/* DESIGN SYSTEM APPLIED - 2026-08-28 */

/* ======================== Variables & Reset ======================== */

:root {
    /* --- Kolory bazowe --- */
    --paper: #fafaf8;
    --ink: #0d0d0d;
    --muted: #686863;
    --red: #ac3335;
    --red-light: #c5484a;
    --line: rgba(13, 13, 13, .12);
    --olive: #77745a;

    /* --- Aliasy kolorów --- */
    --bg-main: var(--paper);
    --text-primary: var(--ink);
    --text-secondary: var(--muted);
    --primary: var(--red);
    --primary-hover: var(--red-light);

    /* --- Kolory tła sekcji --- */
    --bg-warm: #e8e5dc;
    --bg-section: #f0eee7;
    --bg-note: #f1f0e9;

    /* --- Kolory tekstu dodatkowe --- */
    --text-warm: #3e3e3a;
    --text-dark: #2c2c28;

    /* --- Cień warm --- */
    --shadow-warm: #e5e2da;
    --shadow-sm: 7px 9px 0 rgba(13, 13, 13, .07);

    /* --- Fonty --- */
    --font-main: 'Plus Jakarta Sans', Arial, sans-serif;
    --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-hero: 'Archivo Black', Impact, sans-serif;

    /* Aliasy wsteczne (stare nazwy → nowe) */
    --sans: var(--font-main);
    --display: var(--font-display);
    --hero: var(--font-hero);

    /* --- Font weights --- */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 900;

    /* --- Font sizes (bez clamp) --- */
    --text-xs: 12px;
    --text-sm: 13px;
    --text-base: 15px;
    --text-md: 16px;
    --text-lg: 18px;
    --text-xl: 19px;
    --text-2xl: 21px;
    --text-3xl: 25px;
    --text-4xl: 30px;

    /* --- Line heights --- */
    --lh-tight: 1;
    --lh-heading: 1.2;
    --lh-body: 1.65;

    /* --- Spacing scale (8px grid) --- */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-14: 56px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-28: 112px;

    /* --- Border radius --- */
    --radius: 0; /* Industrialna estetyka - celowo brak zaokrągleń */
}

/* --- Aliasy przycisków (dokumentacja) ---
   .btn         = --btn-primary  (tło --red, tekst #fff)
   .btn.outline = --btn-secondary (tło transparent, tekst --ink)
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-main);
    font-size: var(--text-md);
    line-height: var(--lh-body);
    -webkit-font-smoothing: antialiased;
    padding-top: 74px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
    z-index: -1;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.wrap {
    width: min(1160px, calc(100% - 40px));
    margin: auto;
}

/* --- Dostępność: focus-visible --- */
:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* ======================== Typography ======================== */

.eyebrow,
.label {
    display: block;
    font: var(--fw-semibold) var(--text-base)/1.1 var(--font-display);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 2px;
    margin: 0 10px 4px 0;
    background: var(--red);
}

.eyebrow-pill {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(172, 51, 53, .08);
    border: 1px solid rgba(172, 51, 53, .25);
    font: var(--fw-semibold) var(--text-sm)/var(--lh-tight) var(--font-display);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
    white-space: nowrap;
}

.eyebrow-pill::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font: var(--fw-black) clamp(42px, 6vw, 86px)/.93 var(--font-hero);
    letter-spacing: -.052em;
    text-transform: uppercase;
    max-width: 760px;
    margin: 22px 0 30px;
}

h2 {
    font: var(--fw-black) clamp(34px, 4.3vw, 57px)/var(--lh-tight) var(--font-hero);
    letter-spacing: -.045em;
    text-transform: uppercase;
    margin: 17px 0;
}

h3 {
    font: var(--fw-black) 26px/1.07 var(--font-hero);
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.lead {
    color: var(--muted);
    font-size: var(--text-lg);
    max-width: 620px;
}

/* --- Kontrast --muted (#686863) na --paper (#fafaf8):
   Współczynnik kontrastu ~4.43:1 dla małego tekstu (< 4.5:1).
   Dla tekstu >= 18px (lub bold >= 14px) spełnia AA (3:1 wystarczy).
   Dla tekstu < 18px może być poniżej WCAG AA. Decyzja właściciela: kolor pozostaje.
   --- */

/* --- Kontrast #fff na --red (#ac3335):
   Współczynnik kontrastu ~5.1:1 - spełnia WCAG AA dla normalnego tekstu.
   --- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 23px;
    border: 2px solid var(--red);
    background: var(--red);
    color: #fff;
    font: var(--fw-semibold) var(--text-md)/var(--lh-tight) var(--font-main);
    text-decoration: none;
    cursor: pointer;
    transition: .2s ease;
}

.btn:hover {
    background: var(--red-light);
    border-color: var(--red-light);
    transform: translateY(-2px);
}

.btn.outline {
    background: transparent;
    color: var(--ink);
}

.btn.outline:hover {
    color: #fff;
    background: var(--red);
}

.btn[aria-disabled="true"] {
    opacity: .46;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

/* ======================== Navigation ======================== */

.top {
    border-bottom: 1px solid rgba(13, 13, 13, .14);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(250, 250, 248, .95);
    box-shadow: 0 7px 20px rgba(13, 13, 13, .07);
    backdrop-filter: blur(12px);
}

.top-in {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.brand-logo {
    height: 26px;
    width: auto;
    display: block;
}

.brand span {
    color: var(--red);
    font: var(--fw-semibold) 17px/var(--lh-tight) var(--font-display);
    letter-spacing: .08em;
    border-left: 1px solid rgba(13, 13, 13, .18);
    padding-left: 11px;
}

.nav {
    display: flex;
    gap: 7px;
    align-items: center;
}

.nav a {
    padding: 10px 11px 9px;
    border: 1px solid transparent;
    font: var(--fw-semibold) var(--text-base)/var(--lh-tight) var(--font-display);
    letter-spacing: .12em;
    text-decoration: none;
    transition: .18s ease;
}

.nav a:last-child {
    border-color: rgba(172, 51, 53, .38);
    color: var(--red);
}

.nav-cta {
    background: rgba(172, 51, 53, .07);
    border-color: var(--red) !important;
    font-weight: var(--fw-semibold);
}

.nav a:hover {
    color: var(--red);
    border-color: rgba(172, 51, 53, .35);
    background: #fff;
    box-shadow: 3px 3px 0 rgba(172, 51, 53, .13);
    transform: translateY(-1px);
}

/* ======================== Hero Section ======================== */

.hero {
    padding: 72px 0 86px;
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 660px;
    height: 660px;
    right: -330px;
    top: -250px;
    border: 1px solid rgba(172, 51, 53, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(172, 51, 53, .035), 0 0 0 78px rgba(13, 13, 13, .025);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy p {
    max-width: 590px;
    font-size: var(--text-xl);
    color: var(--text-warm);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 33px;
}

.hero-note {
    margin: 22px 0 0;
    font-size: var(--text-sm) !important;
    color: var(--muted) !important;
}

.hero-bullets {
    margin: 18px 0 25px;
    padding: 0;
    list-style: none;
}

.hero-bullets li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: var(--text-base);
    font-weight: var(--fw-medium);
    color: var(--text-dark);
}

.hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--red);
    font-weight: var(--fw-bold);
    font-size: var(--text-md);
}

.analysis-frame {
    position: relative;
    padding: 18px 0 0 18px;
}

.analysis-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 45%;
    border-top: 2px solid var(--red);
    border-left: 2px solid var(--red);
}

.analysis-frame::after {
    content: "AUDYTOR / PRZYKŁAD WYNIKU";
    position: absolute;
    bottom: -25px;
    right: 0;
    font: var(--fw-semibold) var(--text-sm)/var(--lh-tight) var(--font-display);
    letter-spacing: .15em;
    color: var(--muted);
}

.analysis-crop {
    position: relative;
    aspect-ratio: 1.08/1;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 18px 20px 0 var(--shadow-warm), 24px 27px 32px rgba(13, 13, 13, .16);
}

.analysis-crop img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}


/* ======================== Strip ======================== */

.strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.strip-in {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.strip-item {
    padding: 25px 25px 25px 0;
    border-right: 1px solid var(--line);
    font-size: 14px;
    color: var(--muted);
}

.strip-item:not(:first-child) {
    padding-left: 25px;
}

.strip-item:last-child {
    border-right: 0;
}

.strip-item strong {
    display: block;
    color: var(--ink);
    font: var(--fw-semibold) var(--text-xl)/var(--lh-tight) var(--font-display);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

/* ======================== Bridge Strip ======================== */

.strip-bridge {
    display: flex;
    min-height: 240px;
}

.split-left {
    flex: 1;
    background: var(--ink);
    color: #fff;
    padding: 56px clamp(20px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    flex: 1;
    background: #8c1f21;
    color: #fff;
    padding: 56px clamp(20px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.split-kicker {
    font: var(--fw-semibold) var(--text-sm)/1 var(--font-display);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin: 0 0 14px;
}

.split-left h2 {
    font: var(--fw-black) clamp(22px, 2.4vw, 34px)/1.1 var(--font-hero);
    color: #fff;
    margin: 0 0 12px;
}

.split-left p {
    font-size: var(--text-md);
    color: rgba(255,255,255,.6);
    margin: 0;
}

.split-right-label {
    font: var(--fw-semibold) var(--text-sm)/1 var(--font-display);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin: 0;
}

.split-right h3 {
    font: var(--fw-black) clamp(20px, 2vw, 30px)/1.15 var(--font-hero);
    color: #fff;
    margin: 0;
}

.split-right p {
    font-size: var(--text-md);
    color: rgba(255,255,255,.72);
    margin: 0;
}

.btn-white {
    background: #fff;
    color: #8c1f21;
    border-color: #fff;
    align-self: flex-start;
}

.btn-white:hover {
    background: rgba(255,255,255,.88);
    border-color: rgba(255,255,255,.88);
}

.split-guarantee {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.45);
    margin: 0;
}

/* ======================== Audit Section ======================== */

.section {
    padding: 112px 0;
}

.section-head {
    max-width: 720px;
    margin-bottom: 46px;
}

.audit-layout {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    gap: 48px;
    align-items: start;
}

.audit-intro {
    position: sticky;
    top: 24px;
}

.audit-intro .lead {
    font-size: 17px;
}

.audit-steps {
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.audit-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: var(--text-base);
}

.audit-steps b {
    font: var(--fw-semibold) 23px/var(--lh-tight) var(--font-display);
    color: var(--red);
    letter-spacing: .06em;
}

/* ======================== Form ======================== */

.form {
    border: 1px solid var(--line);
    background: #fff;
    padding: 34px;
}

.form-kicker {
    font: var(--fw-semibold) var(--text-base)/var(--lh-tight) var(--font-display);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 22px;
}

.field {
    margin-bottom: 19px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 7px;
}

input,
textarea {
    width: 100%;
    border: 1px solid #bbb8b0;
    background: var(--paper);
    border-radius: 0;
    color: var(--ink);
    font: var(--text-base)/1.45 var(--font-main);
    padding: 13px;
}

textarea {
    min-height: 126px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(172, 51, 53, .28);
    border-color: var(--red);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hint {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.55;
    margin: 8px 0 0;
}

.check {
    display: grid;
    grid-template-columns: 17px 1fr;
    gap: 9px;
    align-items: start;
    margin: 17px 0;
}

.check input {
    width: 17px;
    height: 17px;
    margin: 3px 0 0;
    accent-color: var(--red);
}

.check label {
    margin: 0;
    font-size: var(--text-xs);
    line-height: 1.55;
}

.success {
    display: none;
    color: #35623d;
    margin: 15px 0 0;
    font-size: 14px;
}

.privacy-note {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 3px solid var(--olive);
    background: var(--bg-note);
    font-size: 14px;
    line-height: 1.58;
}

.privacy-note strong {
    display: block;
    font: var(--fw-semibold) var(--text-md)/var(--lh-tight) var(--font-display);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.privacy-badge-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.privacy-badge-icon {
    width: 18px;
    height: 18px;
    fill: var(--olive);
    flex-shrink: 0;
}

.file-dropzone {
    display: block;
    border: 2px dashed rgba(172, 51, 53, .38);
    background: rgba(250, 250, 248, .8);
    padding: 24px 18px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    margin-bottom: 14px;
    position: relative;
}

.file-dropzone:hover {
    border-color: var(--red);
    background: rgba(172, 51, 53, .03);
}

.file-dropzone-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.8;
}

.file-dropzone-title {
    display: block;
    font: var(--fw-semibold) var(--text-md)/1.3 var(--font-display);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
}

.file-dropzone-sub {
    display: block;
    font-size: var(--text-xs);
    color: var(--muted);
    margin-top: 4px;
}

.file-dropzone input[type="file"] {
    opacity: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* ======================== Packages Grid ======================== */

.paper-section {
    background: var(--bg-section);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: inset 0 16px 22px rgba(13, 13, 13, .025), inset 0 -16px 22px rgba(13, 13, 13, .02);
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pack {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm), 14px 17px 24px rgba(13, 13, 13, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pack:hover {
    transform: translate(-2px, -3px);
    box-shadow: 10px 13px 0 rgba(172, 51, 53, .14), 18px 24px 30px rgba(13, 13, 13, .12);
}

.cover {
    aspect-ratio: 1.55/1;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
    background: var(--bg-warm);
}

.cover::before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(13, 13, 13, .14);
    box-shadow: inset 0 0 0 7px rgba(250, 250, 248, .32);
}

.cover::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    right: 22px;
    top: 22px;
    background: var(--red);
    box-shadow: -12px 12px 0 rgba(13, 13, 13, .38);
}

.glyph {
    position: relative;
    z-index: 1;
    width: 61px;
    height: 61px;
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 8px 8px 0 rgba(172, 51, 53, .72);
}

.glyph::before,
.glyph::after {
    content: "";
    position: absolute;
    background: var(--ink);
}

.glyph::before {
    width: 1px;
    height: 76px;
    left: 29px;
    top: -9px;
}

.glyph::after {
    height: 1px;
    width: 76px;
    left: -9px;
    top: 29px;
}

.glyph.b2b {
    border-radius: 50%;
}

.glyph.b2b i {
    position: absolute;
    inset: 13px;
    border: 1px solid var(--red);
    border-radius: 50%;
}

.glyph.dzielo {
    transform: rotate(45deg);
}

.glyph.dzielo i {
    display: block;
    position: absolute;
    inset: 14px;
    border: 1px solid var(--red);
}

.glyph.zlecenie {
    width: 68px;
    height: 46px;
}

.glyph.zlecenie::before {
    height: 60px;
    left: 32px;
    top: -7px;
}

.glyph.zlecenie::after {
    width: 82px;
    left: -8px;
    top: 21px;
}

.glyph.zlecenie i {
    display: block;
    position: absolute;
    inset: 9px;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
}

.glyph.tfp {
    border-radius: 50% 50% 0 0;
}

.glyph.tfp i {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid var(--red);
    border-radius: 50%;
    left: 17px;
    top: 17px;
}

.pack-copy {
    padding: 21px 20px 8px;
}

.pack-count {
    font: var(--fw-semibold) 11px/1 var(--font-display);
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 14px 0 0;
    min-height: 0;
}

.doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.doc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.35;
}

.doc-list li::before {
    content: '';
    display: block;
    width: 11px;
    height: 14px;
    border: 1.5px solid rgba(172, 51, 53, .5);
    border-radius: 1px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pack h3 {
    font-size: var(--text-3xl);
    margin: 10px 0;
}

.pack p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    min-height: 65px;
}

.pack ul {
    padding: 0;
    margin: 8px 0 0;
    list-style: none;
    font-size: var(--text-sm);
    line-height: 1.5;
}

.pack li {
    padding: 8px 0;
    border-top: 1px solid var(--line);
}

.pack-foot {
    margin-top: auto;
    padding: 12px 20px 22px;
}

.price {
    font: var(--fw-black) var(--text-4xl)/var(--lh-tight) var(--font-hero);
    letter-spacing: -.04em;
}

.pack .price {
    font-size: var(--text-lg);
    white-space: nowrap;
    margin-bottom: 12px;
}

.pack .pack-price {
    margin: 16px 0 12px;
}

.pack .doc-list {
    margin: 0;
}

.pack .doc-list li {
    padding: 0;
    border-top: 0;
}

.price .old {
    font-size: var(--text-base);
    margin-right: 4px;
}

.old {
    color: var(--muted);
    text-decoration: line-through;
    font: var(--fw-medium) var(--text-md)/var(--lh-tight) var(--font-main);
    letter-spacing: 0;
}

.pack .btn {
    width: 100%;
    min-height: 47px;
    padding: 10px;
    font-size: var(--text-sm);
}

.badge-pop {
    position: absolute;
    top: -11px;
    right: 16px;
    background: var(--red);
    color: #fff;
    font: var(--fw-semibold) 11px/var(--lh-tight) var(--font-display);
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 11px;
    box-shadow: 2px 2px 0 rgba(13, 13, 13, .15);
    z-index: 2;
}

.badge-savings {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font: var(--fw-semibold) var(--text-xs)/var(--lh-tight) var(--font-display);
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 9px;
    margin-left: 8px;
    vertical-align: middle;
}

.badge-promo {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font: var(--fw-semibold) var(--text-xs)/1 var(--font-display);
    letter-spacing: .08em;
    padding: 4px 10px;
    margin-bottom: 12px;
}

/* ======================== Full Package ======================== */

.full {
    background: var(--ink);
    color: #fff;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.full::before {
    content: "";
    position: absolute;
    right: -130px;
    top: -120px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.full h3 {
    font-size: 42px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.full-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 4px 4px 0 var(--red);
    flex-shrink: 0;
}

.full p {
    max-width: 580px;
    color: rgba(255, 255, 255, .7);
    position: relative;
}

.full .label {
    color: #fff;
    position: relative;
}

.full .price {
    margin: 31px 0 22px;
    position: relative;
    font-size: 47px;
}

.price-mobile-only {
    display: none;
}

.full .old {
    color: rgba(255, 255, 255, .52);
}

.refund {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding: 18px 0;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.refund strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.full .check {
    position: relative;
}

.full .check a {
    color: #fff;
}

.full .btn {
    position: relative;
}

.full-side {
    position: relative;
    align-self: end;
}

.full-side ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.full-side li {
    padding: 15px 0 15px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    position: relative;
    font-size: var(--text-base);
}

.full-side li::before {
    content: "/";
    position: absolute;
    left: 3px;
    color: var(--red-light);
    font: var(--fw-semibold) 25px/var(--lh-tight) var(--font-display);
}


.seal-box {
    margin-top: 24px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    gap: 16px;
}

.seal-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: #fff;
    font: var(--fw-black) 20px/var(--lh-tight) var(--font-hero);
    flex-shrink: 0;
}

.seal-text strong {
    display: block;
    font: var(--fw-semibold) var(--text-base)/1.2 var(--font-display);
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
}

.seal-text span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, .75);
}

.final .btn {
    background: var(--ink);
    border: 2px solid var(--ink);
    color: #fff;
    font-size: var(--text-md);
    font-weight: var(--fw-bold);
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 16px 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    white-space: nowrap;
    transition: .2s ease;
}

.final .btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

/* ======================== Trust Section ======================== */

.trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.trust article {
    padding: 30px 30px 30px 0;
    border-right: 1px solid var(--line);
}

.trust article:not(:first-child) {
    padding-left: 30px;
}

.trust article:last-child {
    border-right: 0;
}

.mark {
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    margin-bottom: 15px;
    color: var(--red);
    border: 1px solid var(--red);
    box-shadow: 5px 5px 0 rgba(172, 51, 53, .16);
    font: var(--fw-semibold) 20px/var(--lh-tight) var(--font-display);
    letter-spacing: .03em;
}

.trust h3 {
    font-size: 23px;
    margin: 0 0 11px;
}

.trust p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* ======================== Editorial ======================== */

.editorial {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
    border-top: 1px solid var(--line);
    padding-top: 36px;
}

.editorial p {
    color: var(--text-warm);
    max-width: 700px;
}

details {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

summary {
    cursor: pointer;
    list-style: none;
    font: var(--fw-semibold) 20px/1.25 var(--font-display);
    letter-spacing: .06em;
    text-transform: uppercase;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    float: right;
    color: var(--red);
    font-size: 28px;
}

details[open] summary::after {
    content: "−";
}

details p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
}


.author-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--ink);
    color: #fff;
    font: var(--fw-black) 18px/48px var(--font-hero);
    text-align: center;
    border: 2px solid var(--red);
    flex-shrink: 0;
}

.author-meta strong {
    display: block;
    font: var(--fw-semibold) var(--text-lg)/1.2 var(--font-display);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.author-meta span {
    font-size: var(--text-sm);
    color: var(--muted);
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
    padding: 0;
    list-style: none;
}

.source-grid li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    font-size: var(--text-sm);
    color: var(--ink);
    text-decoration: none;
    transition: .15s ease;
    font-weight: var(--fw-medium);
}

.source-grid li a:hover {
    border-color: var(--red);
    color: var(--red);
    background: #fff;
    transform: translateY(-1px);
}

.source-grid li svg {
    flex-shrink: 0;
    stroke: var(--red);
}

/* ======================== FAQ ======================== */

.faq {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item button {
    appearance: none;
    width: 100%;
    border: 0;
    background: none;
    padding: 21px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    text-align: left;
    color: var(--ink);
    font: var(--fw-semibold) var(--text-2xl)/1.3 var(--font-display);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.faq-item button span:last-child {
    color: var(--red);
    font: var(--fw-medium) 28px/17px var(--font-main);
}

.faq-answer {
    display: none;
    max-width: 850px;
    color: var(--muted);
    font-size: var(--text-base);
    padding: 0 0 22px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ======================== Final CTA ======================== */

.final {
    background: var(--red);
    color: #fff;
    padding: 75px 0;
}

.final-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.final h2 {
    margin: 0;
    max-width: 740px;
    font-size: 48px;
}

.final p {
    margin: 13px 0 0;
}

/* ======================== Footer ======================== */

.footer {
    background: var(--ink);
    color: #fff;
    padding: 36px 0;
}

.footer-in {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 50px;
    align-items: center;
}

.footer-branding img {
    width: min(100%, 380px);
    height: auto;
}

.footer-info {
    text-align: right;
}

.footer-product,
.footer-links {
    margin: 0;
    font: var(--fw-regular) var(--text-xs)/1.35 var(--font-display);
    letter-spacing: .08em;
}

.footer-address {
    margin: 10px 0;
    font-style: normal;
    color: rgba(255, 255, 255, .75);
    font: var(--fw-regular) var(--text-xs)/1.9 var(--font-display);
    letter-spacing: .07em;
}

.footer-address span {
    display: block;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
}

.footer-links a {
    color: #fff;
    font-weight: var(--fw-regular);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--red);
}

/* ======================== Legal pages (polityka, regulamin) ======================== */

.hero.hero-legal {
    padding: 72px 0 42px;
    border-bottom: 1px solid var(--line);
}

main {
    padding: 54px 0 84px;
}

.legal-grid {
    display: grid;
    gap: 24px;
}

section.legal-section {
    padding: 32px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 4px 6px 0 rgba(13, 13, 13, .04);
}

section.legal-section h2 {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(172, 51, 53, .25);
    color: var(--red);
    font: var(--fw-semibold) 20px/var(--lh-heading) var(--font-display);
    text-transform: uppercase;
    letter-spacing: .06em;
}

section.legal-section p,
section.legal-section li {
    color: var(--text-warm);
    font-size: var(--text-base);
    line-height: 1.62;
}

section.legal-section p {
    margin: 0 0 14px;
}

section.legal-section p:last-child {
    margin-bottom: 0;
}

section.legal-section ul {
    margin: 0 0 14px;
    padding-left: 20px;
}

section.legal-section li {
    margin-bottom: 6px;
}

section.legal-section strong {
    color: var(--ink);
}

section.legal-section.notice {
    border-left: 4px solid var(--red);
    background: var(--bg-section);
}

.footer.footer-legal {
    border-top: 1px solid var(--line);
}

/* ======================== Responsive (tablet) ======================== */

@media (max-width: 900px) {
    .eyebrow-pill {
        white-space: normal;
    }

    .hero-grid,
    .audit-layout,
    .full,
    .editorial {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .audit-intro {
        position: static;
    }

    .pack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .full {
        padding: 42px 32px;
    }
}

/* ======================== Responsive (mobile) ======================== */

@media (max-width: 640px) {
    body {
        padding-top: 61px;
    }

    .wrap {
        width: min(100% - 28px, 1160px);
    }

    .eyebrow-pill {
        white-space: normal;
    }

    .top-in {
        min-height: 61px;
        padding: 10px 0 0;
        flex-wrap: wrap;
        gap: 8px;
    }

    .brand {
        font-size: 18px;
    }

    .brand span {
        display: none;
    }

    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }

    .nav a {
        padding: 8px 3px 9px;
        font-size: var(--text-xs);
        letter-spacing: .08em;
    }

    .nav a:last-child {
        padding-left: 7px;
        padding-right: 7px;
    }

    .hero {
        padding: 48px 0 68px;
    }

    .hero.hero-legal {
        padding: 42px 0 32px;
    }

    h1 {
        font-size: 46px;
    }

    .hero-legal h1 {
        font-size: 38px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .analysis-frame {
        margin-top: 8px;
    }

    .strip-in,
    .trust {
        grid-template-columns: 1fr;
    }

    .strip-item,
    .strip-item:not(:first-child),
    .trust article,
    .trust article:not(:first-child) {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .strip-item:last-child,
    .trust article:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 75px 0;
    }

    .strip-bridge {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

    .btn-white {
        align-self: stretch;
        text-align: center;
    }

    .form {
        padding: 23px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pack-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pack {
        display: flex;
        flex-direction: column;
    }

    .cover {
        aspect-ratio: 2.2/1;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .pack-copy {
        padding: 17px 20px 8px;
    }

    .pack h3 {
        font-size: 22px;
    }

    .pack p {
        min-height: 0;
        margin-bottom: 0;
    }

    .pack-foot {
        padding: 8px 20px 20px;
    }

    .pack .check {
        margin: 10px 0;
    }

    .full {
        padding: 34px 22px;
    }

    .full h3 {
        font-size: 28px;
    }

    .full .price {
        font-size: 40px;
    }

    .price-mobile-only {
        display: block;
    }

    .full-side .price {
        display: none;
    }

    .source-grid {
        grid-template-columns: 1fr;
    }

    .final {
        padding: 57px 0;
    }

    .final-in {
        display: block;
    }

    .final h2 {
        font-size: 37px;
    }

    .final .btn {
        margin-top: 23px;
    }

    .footer-in {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-branding img {
        width: 50%;
    }

    .footer-info {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .final .btn {
        width: 100%;
        white-space: normal;
    }

    section.legal-section {
        padding: 22px;
    }
}

/* ======================== Scroll Reveal ======================== */
.js-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-reveal.is-visible {
    opacity: 1;
    transform: none;
}
.js-reveal.delay-1 { transition-delay: 0.1s; }
.js-reveal.delay-2 { transition-delay: 0.2s; }
.js-reveal.delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
    .js-reveal { opacity: 1; transform: none; transition: none; }
}

/* ======================== Cookie Banner ======================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform .3s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    font-size: var(--text-sm);
    color: rgba(250, 250, 248, .75);
    margin: 0;
    min-width: 200px;
}
.cookie-text a {
    color: #fff;
}
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.cookie-decline {
    font: var(--fw-medium) var(--text-sm)/1 var(--font-main);
    color: rgba(250, 250, 248, .55);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-decline:hover {
    color: rgba(250, 250, 248, .85);
}
