/* =========================================================
   JAKUB HARASIMOWICZ — strona osobista
   Paleta: granat / złoto / czerń
   ========================================================= */

/* ---------- Albert Sans (self-hosted, variable) ---------- */
@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/AlbertSans-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/AlbertSans-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy-900: #070d1a;
  --navy-800: #0a1628;
  --navy-700: #0e1f38;
  --navy-600: #14294a;
  --black:    #08090c;
  --ink:      #0d0f14;

  /* brąz — tradycja, jakość, natura */
  --gold:     #8f5b30;
  --gold-300: #c1926a;
  --gold-600: #5e3a1d;
  --bronze-grad: linear-gradient(135deg, #8f5b30 0%, #6e4423 55%, #4e2f16 100%);
  --bronze-grad-hover: linear-gradient(135deg, #a56b3a 0%, #82512a 55%, #5e3a1d 100%);

  --paper:    #f5f1e8;
  --cream:    #efe9db;
  --muted:    #9aa7bd;
  --muted-dark:#5d6b82;
  --line:     rgba(169,113,66,0.30);
  --line-soft:rgba(255,255,255,0.08);

  --font-display: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::before { display: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
.gold { color: var(--gold); }
.serif-it { font-family: var(--font-display); font-style: italic; }

.section { padding: 110px 0; position: relative; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 18px 0 0; color: var(--paper); }
.lede { color: var(--muted); font-size: 1.12rem; max-width: 620px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 15px 30px; border-radius: var(--radius);
  cursor: pointer; transition: all .35s var(--ease); border: 1px solid transparent;
}
.btn-gold { background: var(--bronze-grad); color: #fff; border: 0; }
.btn-gold:hover { background: var(--bronze-grad-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(169,113,66,0.65); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-300); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,13,26,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: 0.01em; color: var(--paper); }
.brand .dot { color: var(--gold); }
.brand small { display:block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-300); font-weight: 600; margin-top: 3px; white-space: nowrap; }
.brand-stack { line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-seg { display: flex; border: 1px solid var(--line); border-radius: 100px; padding: 4px; gap: 2px; }
.nav-seg a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 8px 16px; border-radius: 100px; color: var(--muted); transition: all .3s var(--ease);
}
.nav-seg a:hover { color: var(--cream); }
.nav-seg a.active { background: var(--bronze-grad); color: #fff; }
.nav-extra { display: flex; align-items: center; gap: 22px; margin-left: 8px; }
.nav-extra a { font-size: 0.86rem; color: var(--muted); font-weight: 500; transition: color .3s; }
.nav-extra a:hover { color: var(--gold-300); }
.nav-cta { padding: 10px 20px !important; }

.burger { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: currentColor; transition: .3s; }

/* =========================================================
   HERO / MOTTO  (recreacja "motywu przewodniego")
   ========================================================= */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("../img/hero-kuba.jpg");
  background-size: cover; background-position: 72% center;
  filter: grayscale(18%) contrast(1.05) brightness(0.92);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,13,26,0.97) 0%, rgba(7,13,26,0.86) 38%, rgba(7,13,26,0.32) 72%, rgba(7,13,26,0.55) 100%),
    radial-gradient(120% 80% at 0% 50%, rgba(10,22,40,0.6), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; max-width: 720px; }
.hero .quote-mark { font-family: var(--font-display); font-size: 5.5rem; line-height: 0.6; color: var(--gold); display: block; margin-bottom: 8px; }
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.3rem); color: var(--paper);
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero-sub { margin-top: 26px; font-size: 1.16rem; color: var(--muted); max-width: 540px; }
.hero-attrib { margin-top: 22px; font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-dark); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll span { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0%{opacity:0; transform:scaleY(0); transform-origin: top;} 40%{opacity:1; transform:scaleY(1);} 100%{opacity:0; transform-origin: bottom;} }

/* --- HERO: klikalne pytania targetujące --- */
.pain-list { margin-top: 36px; display: flex; flex-direction: column; gap: 2px; max-width: 640px; }
.pain {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 16px 18px; border-left: 2px solid var(--line);
  background: rgba(10,22,40,0.45); backdrop-filter: blur(4px);
  transition: border-color .3s var(--ease), background .3s, transform .3s var(--ease);
}
.pain:hover { border-left-color: var(--gold); background: rgba(14,31,56,0.7); transform: translateX(6px); }
.pain-q { font-weight: 700; color: var(--gold-300); font-size: 1.08rem; white-space: nowrap; }
.pain-a { color: var(--cream); font-size: 1.05rem; }
.pain .arr { margin-left: auto; color: var(--gold); opacity: 0; transition: opacity .3s, transform .3s var(--ease); }
.pain:hover .arr { opacity: 1; transform: translateX(4px); }
.pain-close { margin-top: 26px; font-size: 1.12rem; color: var(--muted); }
.pain-close em { font-style: normal; color: var(--paper); font-weight: 600; }

/* --- karty jako linki + cytaty klientów --- */
a.card { color: inherit; }

/* kafle bólu (Poznajesz się?) — zdjęcia mocno przyciemnione, mają kotwiczyć dyskomfort */
#czy-to-ty .card-img img { filter: grayscale(55%) contrast(1.08) brightness(0.45); }
#czy-to-ty .card-img::after { background: linear-gradient(180deg, rgba(7,13,26,0.45) 0%, rgba(7,13,26,0.97) 100%); }
#czy-to-ty .card:hover .card-img img { filter: grayscale(45%) contrast(1.08) brightness(0.5); transform: scale(1.04); }
.quotes { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.quotes li { color: var(--muted); font-size: 0.95rem; line-height: 1.55; padding-left: 14px; border-left: 2px solid var(--line); }
.quotes li:hover { color: var(--cream); }
.card .quotes + .card-link { margin-top: 24px; }

/* --- rozwiązania (z wideo w tle) --- */
.solutions { background: var(--navy-800); position: relative; overflow: hidden; }
.solutions > video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) contrast(1.06) brightness(0.55); z-index: 0;
}
.solutions::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,13,26,0.92) 0%, rgba(7,13,26,0.78) 50%, rgba(7,13,26,0.94) 100%);
}
.sol-inner { position: relative; z-index: 2; }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sol { background: rgba(7,13,26,0.82); backdrop-filter: blur(6px); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; transition: border-color .4s, transform .4s var(--ease); }
.sol:hover { border-color: var(--line); transform: translateY(-6px); }
.sol h3 { font-size: 1.35rem; color: var(--gold-300); text-align: center; }
.sol p { color: var(--muted); font-size: 0.97rem; margin-top: 14px; flex: 1; }
.sol .card-link { margin-top: 22px; color: var(--gold); font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 10px; }

/* --- finalne CTA --- */
.cta-final { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-final > div:first-child { max-width: 640px; }
.cta-sub { color: var(--muted); margin-top: 16px; font-size: 1.02rem; }
.cta-side { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-contact { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
.cta-tel { color: var(--gold-300); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.04em; white-space: nowrap; }
.cta-tel:hover { color: #fff; }
.footer-contact a[href^="tel:"] { color: var(--gold-300); font-weight: 700; font-size: 1.08rem; }

/* stat strip */
.stats { background: var(--ink); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid.five { grid-template-columns: repeat(5, 1fr); }
.stat { padding: 40px 24px; text-align: center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stat .lab { font-size: 0.8rem; color: var(--muted); margin-top: 10px; letter-spacing: 0.02em; }

/* =========================================================
   MOTTO BAND — "przewróć stół" (motyw przewodni) z wideo w tle
   ========================================================= */
.motto-band { position: relative; overflow: hidden; background: var(--black); padding: 130px 0; }
.motto-band video, .motto-band .mb-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) contrast(1.06) brightness(0.7);
  z-index: 0;
}
.motto-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,13,26,0.96) 0%, rgba(7,13,26,0.82) 45%, rgba(7,13,26,0.62) 100%),
    radial-gradient(110% 90% at 12% 50%, rgba(10,22,40,0.55), transparent 65%);
}
.motto-band .wrap { position: relative; z-index: 2; max-width: 880px; }
.motto-band .quote-mark { font-family: var(--font-display); font-size: 4.5rem; line-height: 0.5; color: var(--gold); display: block; margin-bottom: 14px; }
.motto-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--paper); line-height: 1.18; }
.motto-band h2 .flip { display: block; color: var(--gold-300); font-style: italic; font-size: clamp(2.6rem, 6.4vw, 5rem); margin-top: 4px; }
.motto-band p { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin-top: 28px; }
.motto-band .mb-attrib { margin-top: 22px; font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* =========================================================
   MOJE DLACZEGO
   ========================================================= */
.why { background: var(--navy-800); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-text p { color: var(--muted); margin-top: 22px; font-size: 1.06rem; }
.why-text p strong { color: var(--cream); font-weight: 600; }
.why-figure { position: relative; }
.why-figure img { border-radius: var(--radius); filter: grayscale(10%) contrast(1.04); aspect-ratio: 4/5; object-fit: cover; }
.why-figure.dim { position: relative; }
.why-figure.dim img { filter: grayscale(28%) contrast(1.05) brightness(0.62); }
.why-figure.dim::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: linear-gradient(180deg, rgba(7,13,26,0.30) 0%, rgba(7,13,26,0.10) 45%, rgba(7,13,26,0.55) 100%);
}
.why-figure .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.why-pull {
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold-300);
  border-left: 2px solid var(--gold); padding-left: 22px; margin-top: 34px; line-height: 1.4;
}

/* =========================================================
   JAK MOGĘ CIĘ WESPRZEĆ — 3 segmenty
   ========================================================= */
.support { background: var(--navy-900); }
.support-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.support-head .lede { margin: 18px auto 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative; background: var(--navy-800); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--line); }
.card-img { height: 220px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(28%) contrast(1.05) brightness(0.85); transition: transform .8s var(--ease), filter .6s; }
.card:hover .card-img img { transform: scale(1.06); filter: grayscale(0%) brightness(0.95); }
.card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.95)); }
.card-tag { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: #fff; background: var(--bronze-grad); padding: 6px 14px; border-radius: 100px; white-space: nowrap; }
.card-body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.55rem; color: var(--paper); }
.card-body p { color: var(--muted); font-size: 0.98rem; margin-top: 14px; flex: 1; }
.card-price { margin-top: 18px; font-size: 0.92rem; color: var(--gold-300); font-weight: 600; }
.card-price span { color: var(--muted-dark); font-weight: 400; }
.card-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 600; font-size: 0.92rem; }
.card-link .arr { transition: transform .35s var(--ease); }
.card:hover .card-link .arr { transform: translateX(5px); }

/* =========================================================
   MANIFEST (lekkie jajo / dystans)
   ========================================================= */
.manifesto { background: var(--ink); text-align: center; }
.manifesto .wrap { max-width: 880px; }
.manifesto h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); color: var(--paper); line-height: 1.3; }
.manifesto h2 em { color: var(--gold-300); font-style: italic; }
.manifesto .sign { margin-top: 30px; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold); }

/* =========================================================
   BLOG
   ========================================================= */
.blog { background: var(--navy-800); }
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 56px; }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { background: var(--navy-900); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: border-color .4s, transform .4s var(--ease); display: flex; flex-direction: column; }
.post:hover { border-color: var(--line); transform: translateY(-6px); }
.post-img { height: 190px; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.05); transition: transform .8s var(--ease); }
.post:hover .post-img img { transform: scale(1.05); }
.post-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.post-cat { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.post-body h3 { font-size: 1.25rem; color: var(--paper); margin-top: 12px; line-height: 1.3; }
.post-body p { color: var(--muted); font-size: 0.92rem; margin-top: 12px; flex: 1; }
.post-meta { margin-top: 18px; font-size: 0.8rem; color: var(--muted-dark); display: flex; align-items: center; gap: 10px; }

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip { background: linear-gradient(120deg, var(--navy-700), var(--navy-900)); border-top: 1px solid var(--line); }
.cta-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--paper); max-width: 640px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--black); padding: 80px 0 36px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; }
.footer .brand { font-size: 1.5rem; }
.footer-about { color: var(--muted); font-size: 0.95rem; margin-top: 18px; max-width: 320px; }
.footer h4 { font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: var(--muted); font-size: 0.95rem; transition: color .3s; }
.footer ul li a:hover { color: var(--gold-300); }
.footer-contact a { display: block; color: var(--cream); font-size: 0.98rem; margin-bottom: 12px; }
.footer-contact a:hover { color: var(--gold-300); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: all .3s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-dark); font-size: 0.84rem; }

/* =========================================================
   PAGE HEADER (podstrony)
   ========================================================= */
.page-hero { position: relative; padding: 130px 0 90px; background: var(--navy-800); overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.page-hero::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.16; filter: grayscale(40%); }
.page-hero.ph-handlowca::before { background-image: url("../img/dla-handlowca.jpg"); }
.page-hero.ph-menadzera::before { background-image: url("../img/dla-menadzera.jpg"); }
.page-hero.ph-biznesu::before { background-image: url("../img/dla-biznesu.jpg"); }
.page-hero.ph-blog::before { background-image: url("../img/blog-3.jpg"); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,13,26,0.6), var(--navy-800)); }
.page-hero .wrap { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: var(--paper); margin-top: 18px; }
.page-hero .lede { margin-top: 24px; font-size: 1.18rem; }
.breadcrumb { font-size: 0.82rem; color: var(--muted-dark); }
.breadcrumb a:hover { color: var(--gold); }

/* product / offer rows */
.offer { background: var(--navy-900); }
.offer-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--line-soft); }
.offer-row:nth-child(even) .offer-media { order: 2; }
.offer-media img { border-radius: var(--radius); aspect-ratio: 5/4; object-fit: cover; filter: grayscale(14%) contrast(1.04); }
.offer-text h3 { font-size: 1.9rem; color: var(--paper); }
.offer-text .price-line { color: var(--gold-300); font-weight: 600; margin-top: 8px; }
.offer-text p { color: var(--muted); margin-top: 16px; }
.offer-text ul.checks { margin-top: 20px; }
.offer-text ul.checks li { color: var(--cream); padding-left: 30px; position: relative; margin-bottom: 12px; font-size: 0.98rem; }
.offer-text ul.checks li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* product cards grid (podstrony) */
.products { background: var(--navy-800); }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.prod {
  background: var(--navy-900); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 34px 30px; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.prod::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.prod:hover { border-color: var(--line); transform: translateY(-6px); }
.prod:hover::before { transform: scaleX(1); }
.prod .ico { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.prod h3 { font-size: 1.3rem; color: var(--paper); margin-top: 14px; }
.prod p { color: var(--muted); font-size: 0.95rem; margin-top: 12px; }
.prod .tag { display: block; text-align: center; margin-top: 18px; font-size: 0.78rem; color: var(--gold-300); font-weight: 600; letter-spacing: 0.02em; }
.prod .soon { color: var(--muted-dark); font-size: 0.78rem; font-style: italic; }

/* --- układ olimpijski 3+2 --- */
.prod-grid.olympic { grid-template-columns: repeat(6, 1fr); }
.prod-grid.olympic .prod:nth-child(1) { grid-column: 1 / 3; }
.prod-grid.olympic .prod:nth-child(2) { grid-column: 3 / 5; }
.prod-grid.olympic .prod:nth-child(3) { grid-column: 5 / 7; }
.prod-grid.olympic .prod:nth-child(4) { grid-column: 2 / 4; }
.prod-grid.olympic .prod:nth-child(5) { grid-column: 4 / 6; }

/* --- obrót kafelka z hookiem --- */
.prod.flip .prod-face { transition: transform .75s var(--ease); backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.prod.flip .prod-front { transform: perspective(1400px) rotateY(0); }
.prod.flip .prod-back {
  position: absolute; inset: 0; z-index: 2;
  transform: perspective(1400px) rotateY(-180deg);
  background: var(--bronze-grad); border-radius: var(--radius);
  padding: 30px 28px 74px; display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
@media (hover: hover) {
  .prod.flip:hover:not(.open) .prod-front { transform: perspective(1400px) rotateY(180deg); }
  .prod.flip:hover:not(.open) .prod-back { transform: perspective(1400px) rotateY(0); }
}
.prod-back .hook { color: #fff; font-weight: 700; font-size: 1.18rem; line-height: 1.45; }
.prod-back .hook-cta { color: rgba(255,255,255,0.88); font-size: 0.86rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.prod.open .prod-front { transform: perspective(1400px) rotateY(0) !important; }
.prod.open .prod-back { transform: perspective(1400px) rotateY(-180deg) !important; }

/* --- reguła niedostępności --- */
.pd-fit { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); color: var(--gold-300); font-size: 0.88rem; font-style: italic; line-height: 1.6; }

/* --- rozwijany brief usługi (plusik) --- */
.prod.has-more { padding-bottom: 74px; }
.prod-plus { z-index: 5; }
.prod-plus {
  position: absolute; right: 20px; bottom: 18px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--gold); background: transparent; color: var(--gold);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: all .35s var(--ease);
}
.prod-plus:hover { background: var(--bronze-grad); color: #fff; border-color: transparent; transform: scale(1.08); }
.prod.open .prod-plus { transform: rotate(45deg); background: var(--bronze-grad); color: #fff; border-color: transparent; }
.prod-details { display: none; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.prod.open .prod-details { display: block; animation: fadeDown .4s var(--ease); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.prod-details h4 { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.prod-details ul { margin: 0 0 18px 0; }
.prod-details ul li { color: var(--cream); font-size: 0.92rem; line-height: 1.6; padding-left: 22px; position: relative; margin-bottom: 9px; }
.prod-details ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.pd-meta { color: var(--gold-300); font-size: 0.92rem; margin-bottom: 12px; }
.pd-meta strong, .pd-exp strong { color: var(--paper); }
.pd-exp { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* FAQ / steps */
.steps { background: var(--ink); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; counter-reset: step; }
.step { padding: 30px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--navy-900); }
.step .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.step h4 { color: var(--paper); font-size: 1.2rem; margin-top: 12px; font-family: var(--font-display); }
.step p { color: var(--muted); font-size: 0.94rem; margin-top: 10px; }

/* =========================================================
   POJEDYNCZY WPIS NA BLOGU (article)
   ========================================================= */
.article-hero { position: relative; padding: 120px 0 50px; background: var(--navy-800); border-bottom: 1px solid var(--line-soft); }
.article-hero .wrap { max-width: 800px; }
.article-hero .post-cat { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.article-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--paper); margin-top: 16px; line-height: 1.14; }
.article-meta { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted-dark); font-size: 0.88rem; }
.article-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }
.article-cover { max-width: 960px; margin: -20px auto 0; padding: 0 28px; }
.article-cover img { width: 100%; border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; filter: grayscale(12%) contrast(1.04); }

.article-body { background: var(--navy-900); padding: 60px 0 90px; }
.article-body .wrap { max-width: 760px; }
.article-body p, .article-body li { color: var(--cream); font-size: 1.12rem; line-height: 1.8; margin-bottom: 24px; }
.article-body h2 { color: var(--paper); font-size: 1.7rem; margin: 46px 0 16px; }
.article-body h3 { color: var(--paper); font-size: 1.3rem; margin: 34px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 24px 22px; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--gold-300); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--gold); }
.article-body strong { color: var(--paper); }
.article-body blockquote {
  border-left: 3px solid var(--gold); padding: 6px 0 6px 26px; margin: 32px 0;
  font-size: 1.4rem; font-style: italic; color: var(--gold-300); line-height: 1.5;
}
.article-body img { border-radius: var(--radius); margin: 32px 0; filter: grayscale(10%) contrast(1.03); }
.article-back { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }
.article-back:hover { color: var(--gold-300); }
.article-share { margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted-dark); font-size: 0.9rem; }
.article-share a { color: var(--muted); border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px; transition: all .3s; }
.article-share a:hover { border-color: var(--gold); color: var(--gold-300); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { background: linear-gradient(120deg, var(--navy-700), var(--ink)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line-soft); }
.newsletter .wrap { max-width: 760px; text-align: center; }
.newsletter h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); color: var(--paper); }
.newsletter p { color: var(--muted); margin: 16px auto 0; max-width: 520px; }
.newsletter-form { margin: 30px auto 0; display: flex; gap: 12px; max-width: 500px; }
.newsletter-form input[type="email"] {
  flex: 1; padding: 15px 20px; border-radius: var(--radius); border: 1px solid var(--line);
  background: rgba(255,255,255,0.04); color: var(--paper); font-family: inherit; font-size: 1rem;
}
.newsletter-form input[type="email"]::placeholder { color: var(--muted-dark); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--gold); }
.newsletter .note { font-size: 0.8rem; color: var(--muted-dark); margin-top: 16px; }
/* miejsce na formularz MailerLite — jego własny styl też tu zadziała */
.ml-embedded { margin: 30px auto 0; max-width: 500px; }
.ml-iframe { display: none; width: 0; height: 0; border: 0; }
.nl-success { margin: 22px auto 0; max-width: 520px; color: var(--gold-300); font-weight: 600; font-size: 1.08rem; }
.nl-success[hidden] { display: none; }

/* =========================================================
   KOMENTARZE
   ========================================================= */
.comments { background: var(--navy-800); }
.comments .wrap { max-width: 760px; }
.comments h2 { color: var(--paper); font-size: 1.5rem; margin-bottom: 10px; }
.comments .sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }
.comments-slot {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 40px 24px;
  text-align: center; color: var(--muted-dark); font-size: 0.92rem;
}

/* =========================================================
   ANIMACJE wejścia
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .why-grid, .offer-row, .offer-row:nth-child(even) .offer-media { grid-template-columns: 1fr; order: 0; }
  .cards, .posts, .steps-grid, .sol-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid.five { grid-template-columns: repeat(3, 1fr); }
  .stats-grid.five .stat:nth-child(3) { border-right: 0; }
  .prod-grid.olympic { grid-template-columns: 1fr 1fr; }
  .prod-grid.olympic .prod { grid-column: auto !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .nav-extra { display: none; }
  .nav-seg { display: none; }
  .burger { display: flex; }
  .nav.open .mobile-menu { display: flex; }
  .mobile-menu {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--navy-900); border-bottom: 1px solid var(--line); flex-direction: column; padding: 18px 28px 28px;
  }
  .mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-weight: 600; color: var(--cream); }
  .mobile-menu a.active { color: var(--gold); }
  .cards, .posts, .steps-grid, .sol-grid { grid-template-columns: 1fr; }
  .stats-grid.five { grid-template-columns: 1fr 1fr; }
  .brand { font-size: 1.1rem; }
  .brand small { white-space: normal; letter-spacing: 0.1em; font-size: 0.52rem; max-width: 200px; }
  .hero { min-height: 88vh; }
  .hero-bg { background-position: 64% center; }
  .pain { padding: 14px 14px; }
  .pain-q { white-space: normal; }
  .cta-final { flex-direction: column; align-items: flex-start; }
}
.mobile-menu { display: none; }
