/* =========================================================
   PEŁNY GRAFIK — strona firmowa
   Design system: Space Grotesk / Inter · #0c0c0e · akcent #e2483d
   Ruch wyłącznie transform/opacity + IntersectionObserver.
   ========================================================= */

:root {
  --bg:        #0c0c0e;
  --bg-1:      #0f0f13;   /* sekcja alternatywna (zmiana tonu) */
  --bg-2:      #16161a;   /* koniec mesha / karty wyżej */
  --card:      #131317;
  --card-2:    #17171b;
  --line:      #26262c;
  --line-soft: #1c1c22;
  --grid:      #1a1a1f;   /* siatka „system" */
  --text:      #edebe6;
  --text-dim:  #9b9a94;
  --text-mute: #6a6a67;
  --accent:    #e2483d;
  --accent-2:  #ff6f63;
  --accent-soft: rgba(226, 72, 61, .12);
  --outline:   #2a2a30;   /* obrys wielkich numerów */
  --radius:    14px;
  --radius-lg: 20px;
  --maxw:      1120px;
  --nav-h:     64px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  background: transparent;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* body copy małymi literami — świadoma decyzja typograficzna.
   Nazwy własne/akronimy zachowują kapitaliki przez <span class="caps"> lub <b>. */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-transform: lowercase;
}
p, li, label, input, textarea, button, a, span, figcaption { text-transform: lowercase; }
.caps, .uc, abbr, .brandmark b { text-transform: none; }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

/* ---------- layout ---------- */
.wrap  { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 720px; }
section { position: relative; padding: clamp(64px, 11vw, 128px) 0; }
.section-alt { background: var(--bg-1); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px;
  background: var(--accent); opacity: .7;
}

h2 { font-size: clamp(28px, 5vw, 48px); }
h2 .em, h1 .em, .em { color: var(--accent); }
.lead {
  color: var(--text-dim);
  font-size: clamp(16px, 2.2vw, 18.5px);
  max-width: 60ch; margin-top: 18px;
}
.lead b { color: var(--text); font-weight: 600; }

/* wielki numer sekcji — outline text w tle nagłówka */
.section-head { position: relative; }
.ghost-num {
  position: absolute;
  top: clamp(-38px, -6vw, -60px); left: -4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(96px, 20vw, 200px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--outline);
  text-stroke: 1px var(--outline);
  pointer-events: none; user-select: none;
  z-index: 0;
}
.section-head > *:not(.ghost-num) { position: relative; z-index: 1; }

/* =========================================================
   TŁO — głębia (mesh drift + ziarno + winieta)
   ========================================================= */
.bg-mesh {
  position: fixed; inset: -30%;
  z-index: -2; pointer-events: none;
  background:
    radial-gradient(42% 40% at 18% 22%, rgba(226,72,61,.10), transparent 60%),
    radial-gradient(48% 44% at 82% 30%, rgba(70,80,120,.055), transparent 62%),
    radial-gradient(60% 55% at 50% 108%, rgba(226,72,61,.045), transparent 64%),
    linear-gradient(180deg, #0c0c0e, #101014 55%, #0c0c0e);
  animation: meshDrift 26s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes meshDrift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to   { transform: translate3d(1.6%, 1.4%, 0) scale(1.06); }
}
.bg-grain {
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.bg-vignette {
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none;
  background: radial-gradient(130% 100% at 50% 38%, transparent 56%, rgba(0,0,0,.42) 100%);
}

/* =========================================================
   NAV — sticky, blur backdrop, hamburger
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(12,12,14,.72);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }

.brandmark {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 18px; letter-spacing: -0.02em;
  color: var(--text);
}
.brandmark .dot { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.nlink {
  position: relative;
  font-size: 14.5px; color: var(--text-dim);
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a.nlink::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a.nlink:hover { color: var(--text); }
.nav-links a.nlink:hover::after,
.nav-links a.nlink.active::after { transform: scaleX(1); }
.nav-links a.nlink.active { color: var(--text); }

.btn-nav {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 18px;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.btn-nav:hover { border-color: var(--accent); background: var(--accent-soft); }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 10px;
  background: transparent; cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 1.6px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease, top .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.nav.open .hamburger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav.open .hamburger span:nth-child(2) { opacity: 0; }
.nav.open .hamburger span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* mobilne menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0;
  z-index: 99;
  background: rgba(10,10,12,.96);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 6px;
  padding: 30px 22px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .28s ease, transform .28s var(--ease);
}
.nav.open + .mobile-menu,
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 500; color: var(--text);
  padding: 16px 4px; border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a .idx { color: var(--accent); font-size: 14px; margin-right: 14px; vertical-align: middle; }
.mobile-menu .btn { margin-top: 22px; text-align: center; }

/* =========================================================
   PRZYCISKI
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 600;
  color: #fff; background: var(--accent);
  border: none; border-radius: 100px;
  padding: 16px 30px; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease;
  box-shadow: 0 10px 34px rgba(226,72,61,.28), 0 0 0 rgba(226,72,61,0);
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
@media (hover:hover) {
  .btn:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(226,72,61,.42), 0 0 90px rgba(226,72,61,.18); }
}
.btn:active { transform: scale(.98); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-soft); box-shadow: none; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 40px; }
.micro { font-size: 13.5px; color: var(--text-mute); margin-top: 18px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: clamp(64px, 12vw, 120px); overflow: hidden; }
.hero .glow {
  position: absolute; left: 62%; top: -10%;
  width: min(920px, 120vw); aspect-ratio: 1.35/1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(226,72,61,.26), transparent 62%);
  filter: blur(60px); z-index: -1; pointer-events: none;
  animation: heroBreathe 18s ease-in-out infinite alternate;
}
@keyframes heroBreathe {
  from { opacity: .65; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}
.hero h1 {
  font-size: clamp(42px, 8.4vw, 92px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 0.98;
  max-width: 15ch;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero .sub {
  font-size: clamp(17px, 2.6vw, 21px);
  color: var(--text-dim); line-height: 1.55;
  max-width: 52ch; margin-top: clamp(24px, 4vw, 34px);
}
.hero .sub b { color: var(--text); font-weight: 600; }

/* pasek zaufania pod hero */
.trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 46px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; color: var(--text-dim);
}
.trust span { display: inline-flex; align-items: center; gap: 9px; }
.trust span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-1);
  overflow: hidden; padding: 20px 0;
  --gap: 40px;
}
.marquee-track {
  display: flex; gap: var(--gap); width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; gap: var(--gap); }
.marquee span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(15px, 2.4vw, 19px); font-weight: 500;
  color: var(--text-mute); letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: var(--gap);
  white-space: nowrap;
}
.marquee span .dot { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - var(--gap)/2)); } }

/* =========================================================
   SEKCJA „JAK TO DZIAŁA" — siatka systemu + diagram flow
   ========================================================= */
.grid-bg { position: relative; }
.grid-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  opacity: .6;
}
.grid-bg > .wrap { position: relative; z-index: 1; }

/* diagram */
.flow { margin-top: clamp(40px, 6vw, 64px); }
.flow-svg { width: 100%; height: auto; overflow: visible; }
.flow-path {
  fill: none; stroke: var(--accent); stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 1200);
  stroke-dashoffset: var(--len, 1200);
  transition: stroke-dashoffset 1.8s var(--ease);
}
.flow.in-view .flow-path { stroke-dashoffset: 0; }
.flow-track { fill: none; stroke: var(--line); stroke-width: 2; stroke-linecap: round; }

/* pętla zwrotna: dane z CRM wracają do reklamy */
.flow-back {
  fill: none; stroke: var(--accent); stroke-width: 1.6;
  stroke-linecap: round; stroke-dasharray: 5 8;
}
.flow-back-arrow { fill: var(--accent); }
.flow-back-label {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  fill: var(--text-dim); letter-spacing: .04em;
}
.flow-back-g { opacity: 0; transition: opacity .8s ease 1.5s; }
.flow.in-view .flow-back-g { opacity: .8; }

.flow-steps {
  display: grid; gap: 16px; margin-top: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .flow-steps { grid-template-columns: repeat(4, 1fr); } }
.flow-node {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
}
.flow-node .tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 12px;
}
.flow-node h3 { font-size: 18px; margin-bottom: 8px; }
.flow-node p { font-size: 14px; color: var(--text-dim); }

/* =========================================================
   MOCKUP OKNA — CRM + kalendarz (czysty CSS)
   ========================================================= */
.showcase-grid { display: grid; gap: clamp(30px, 5vw, 56px); align-items: center; }
@media (min-width: 940px) { .showcase-grid { grid-template-columns: 1fr 1.05fr; } }

.window {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow: 0 40px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.015) inset;
  overflow: hidden;
}
.window-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,.015);
}
.window-dots { display: flex; gap: 7px; }
.window-dots i { width: 11px; height: 11px; border-radius: 50%; background: #34343b; display: block; }
.window-dots i:first-child { background: #4a3330; }
.window-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 12.5px;
  color: var(--text-mute); letter-spacing: .02em;
}
.window-body { display: grid; grid-template-columns: 118px 1fr; min-height: 300px; }
@media (max-width: 460px) { .window-body { grid-template-columns: 88px 1fr; } }

.win-side { border-right: 1px solid var(--line-soft); padding: 16px 12px; background: rgba(0,0,0,.15); }
.win-side .s-item {
  height: 9px; border-radius: 4px; background: #2a2a31; margin-bottom: 13px;
}
.win-side .s-item.short { width: 60%; }
.win-side .s-item.active { background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(226,72,61,.5); }

.win-main { padding: 16px 16px 20px; }
.win-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.win-h .t { height: 10px; width: 108px; border-radius: 4px; background: #33333a; }
.win-h .pill { font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(226,72,61,.4); border-radius: 100px; padding: 4px 10px; }

.lead-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
}
.lead-row .av { width: 26px; height: 26px; border-radius: 50%; background: #2c2c33; flex: none; }
.lead-row .ln { flex: 1; height: 8px; border-radius: 4px; background: #2c2c33; }
.lead-row .ln.w2 { max-width: 62%; }
.lead-row .st { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; font-family: 'Space Grotesk', sans-serif; }
.st.nowe   { color: var(--accent); background: var(--accent-soft); }
.st.kontakt{ color: #d8b25a; background: rgba(216,178,90,.12); }
.st.done   { color: #6ac488; background: rgba(106,196,136,.12); }

/* mini-kalendarz */
.mini-cal { padding: 6px 4px 2px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-grid .c {
  aspect-ratio: 1/1; border-radius: 6px;
  background: #202027; border: 1px solid var(--line-soft);
}
.cal-grid .c.fill { background: var(--accent-soft); border-color: rgba(226,72,61,.45); }
.cal-grid .c.fill.hot { background: rgba(226,72,61,.5); border-color: var(--accent); }
.cal-cap { display:flex; gap:16px; margin-top:14px; font-size:12px; color:var(--text-mute); }
.cal-cap i { width:10px; height:10px; border-radius:3px; display:inline-block; margin-right:6px; vertical-align:middle; }

.showcase-points { list-style: none; margin-top: 30px; }
.showcase-points li { position: relative; padding: 0 0 18px 30px; color: var(--text-dim); font-size: 15.5px; }
.showcase-points li b { color: var(--text); font-weight: 600; }
.showcase-points li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}

/* =========================================================
   DOWÓD — liczniki + placeholder
   ========================================================= */
.stats { display: grid; gap: 16px; margin-top: 44px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px;
}
.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 6vw, 50px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.stat .num .u { color: var(--accent); }
.stat .cap { font-size: 13.5px; color: var(--text-dim); margin-top: 12px; }

.proof-card {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  padding: clamp(28px, 5vw, 46px);
  text-align: center;
}
.proof-card img {
  display: inline-block; width: 100%; max-width: 316px; height: auto;
  border-radius: 10px;
  box-shadow: 0 14px 44px rgba(0,0,0,.5);
}
.proof-card figcaption { margin-top: 20px; }
.proof-card figcaption b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; }
.proof-card figcaption span { display: block; margin-top: 6px; font-size: 13px; color: var(--text-mute); }

.proof-shot {
  margin-top: 28px;
  aspect-ratio: 16/9;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,255,255,.012) 14px 28px),
    var(--card);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--text-mute); font-size: 14px; padding: 24px;
}
.proof-shot b { color: var(--text-dim); font-weight: 600; }
.tag-todo {
  display: inline-block; font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(226,72,61,.4);
  border-radius: 100px; padding: 3px 10px; margin-bottom: 12px;
}

/* =========================================================
   KARTY OFERTY (poziomy)
   ========================================================= */
.tiers { display: grid; gap: 18px; margin-top: clamp(40px, 6vw, 60px); }
@media (min-width: 900px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px 32px;
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s ease;
}
.tier::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: radial-gradient(90% 60% at 50% 0%, rgba(226,72,61,.06), transparent 70%);
  opacity: 0; transition: opacity .28s ease; pointer-events: none;
}
@media (hover:hover) {
  .tier:hover { transform: translateY(-4px); border-color: rgba(226,72,61,.5); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 46px rgba(226,72,61,.08); }
  .tier:hover::after { opacity: 1; }
  .tier:hover .tier-num { color: var(--accent-2); -webkit-text-stroke-color: var(--accent); }
}
.tier-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 60px; line-height: 1; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1.4px var(--outline); text-stroke: 1.4px var(--outline);
  transition: color .28s ease, -webkit-text-stroke-color .28s ease;
  margin-bottom: 16px;
}
.tier .kicker { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.tier h3 { font-size: 22px; margin-bottom: 14px; }
.tier .tier-desc { font-size: 14.5px; color: var(--text-dim); margin-bottom: 20px; }
.tier .divider { height: 1px; background: var(--line-soft); margin: 4px 0 18px; }
.tier .sub-label { font-family:'Space Grotesk',sans-serif; font-size:11.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--text-mute); margin-bottom:12px; }
.tier ul { list-style: none; margin-bottom: 22px; }
.tier ul li { position: relative; padding: 0 0 11px 26px; font-size: 14.5px; color: var(--text-dim); }
.tier ul li b { color: var(--text); font-weight: 600; }
.tier ul li::before {
  content: ''; position: absolute; left: 2px; top: 8px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--accent-soft); border: 1.5px solid var(--accent);
}
.tier .for-whom {
  margin-top: auto; padding: 16px 18px;
  background: rgba(0,0,0,.2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); font-size: 14px; color: var(--text-dim);
}
.tier .for-whom b { color: var(--text); font-weight: 600; display: block; margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.tier .price-note { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: .04em; margin-top: 18px; }

.principle {
  margin-top: 34px;
  border-left: 2px solid var(--accent);
  padding: 6px 0 6px 22px;
  font-size: clamp(17px, 2.6vw, 21px);
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  color: var(--text); line-height: 1.4; max-width: 44ch;
}

/* =========================================================
   WYŁĄCZNOŚĆ
   ========================================================= */
.exclusive { text-align: left; }
.exclusive .big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 5vw, 44px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.08;
}
.exclusive .big .em { color: var(--accent); }

/* =========================================================
   O MNIE
   ========================================================= */
.about-grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 340px 1fr; } }
.portrait {
  aspect-ratio: 4/5; max-width: 340px;
  border: 1px dashed var(--line); border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(-45deg, transparent 0 16px, rgba(255,255,255,.012) 16px 32px),
    var(--card);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--text-mute); font-size: 13px; padding: 20px; position: sticky; top: calc(var(--nav-h) + 20px);
}
.portrait.filled { border-style: solid; padding: 0; overflow: hidden; background: var(--card); }
.portrait.filled img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text p { margin-bottom: 18px; color: var(--text-dim); }
.about-text p b { color: var(--text); font-weight: 600; }
.about-text p:first-child { font-size: clamp(18px, 2.6vw, 22px); color: var(--text); line-height: 1.5; }
.placeholder-note {
  border: 1px solid rgba(226,72,61,.35); border-radius: var(--radius);
  background: var(--accent-soft); padding: 16px 18px; margin: 6px 0 24px;
  font-size: 14px; color: var(--text-dim);
}
.placeholder-note b { color: var(--accent); font-weight: 600; }
.facts {
  display: flex; flex-wrap: wrap; gap: 10px 0; margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; font-weight: 500; color: var(--text);
}
.facts span { display: inline-flex; align-items: center; }
.facts span:not(:last-child)::after { content: '·'; margin: 0 14px; color: var(--accent); }

/* =========================================================
   KONTAKT + FORMULARZ (stopka)
   ========================================================= */
.contact { border-top: 1px solid var(--line-soft); }
.contact-grid { display: grid; gap: clamp(30px, 5vw, 56px); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-copy h2 { margin-bottom: 8px; }
.contact-copy .lead { margin-bottom: 26px; }
.ig-link {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 11px 20px 11px 14px; color: var(--text);
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.ig-link:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
.ig-link .ig-ico { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line); display: grid; place-items: center; }
.ig-link .ig-ico svg { width: 18px; height: 18px; }
.ig-link small { display: block; color: var(--text-mute); font-size: 12px; }

.form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px);
}
.field { margin-bottom: 16px; }
.field.row2 { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .field.row2 { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 7px; font-weight: 500; }
.field label .req { color: var(--accent); }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 16px; padding: 14px 15px;
  outline: none; transition: border-color .15s ease, background .15s ease;
}
.form-card input::placeholder { color: var(--text-mute); }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--accent); }
.form-card input.invalid, .form-card select.invalid { border-color: var(--accent); background: var(--accent-soft); }
.form-card select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b9a94' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-card .btn { margin-top: 8px; }
.form-consent { font-size: 12.5px; color: var(--text-mute); margin-top: 16px; }
.form-consent a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.form-error { display: none; color: var(--accent); font-size: 14px; margin-top: 14px; }
.form-error.visible { display: block; }
.form-success { display: none; text-align: center; padding: 20px 0 8px; }
.form-success.visible { display: block; }
.form-success .check {
  width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--accent-soft); border: 1.5px solid var(--accent);
  display: grid; place-items: center; color: var(--accent); font-size: 26px;
}
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--text-dim); max-width: 40ch; margin: 0 auto; }

/* =========================================================
   FOOTER bar
   ========================================================= */
.foot {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0 56px; color: var(--text-mute); font-size: 13.5px;
}
.foot .wrap { display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center; justify-content: space-between; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot-links a { color: var(--text-dim); transition: color .2s ease; }
.foot-links a:hover { color: var(--text); }
.foot .fbrand { font-family:'Space Grotesk',sans-serif; color: var(--text); font-weight: 600; }
.foot .fbrand .dot { color: var(--accent); }

/* =========================================================
   HERO — układ 2-kolumnowy + wizualny „grafik" + underline
   ========================================================= */
.hero-grid { display: grid; gap: clamp(30px, 5vw, 60px); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.12fr .88fr; } }
.hero-visual { display: none; }
@media (min-width: 940px) { .hero-visual { display: block; } }

/* mikro-ruch: rysowane podkreślenie słowa „pełny" */
.hero h1 .ul { position: relative; }
.hero h1 .ul::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: 3px;
  background: var(--accent-2); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
}
.hero.ready h1 .ul::after { animation: ulDraw .6s var(--ease) forwards; animation-delay: 1s; }
@keyframes ulDraw { to { transform: scaleX(1); } }

/* karta „grafik — ten tydzień", sloty zapełniają się akcentem */
.hero-cal {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow: 0 40px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.015) inset;
  padding: 20px 20px 22px;
}
.hero-cal::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px);
  background-size: 100% 34px; background-position: 0 52px;
  -webkit-mask-image: linear-gradient(180deg, transparent 30%, #000 60%);
  mask-image: linear-gradient(180deg, transparent 30%, #000 60%);
}
.hero-cal-top { position: relative; display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 12.5px; color: var(--text-mute); margin-bottom: 18px; }
.hero-cal-top .dot-r { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.hero-cal-top .hc-pill {
  margin-left: auto; font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(226,72,61,.4); border-radius: 100px; padding: 3px 11px;
  opacity: 0; transform: scale(.9);
}
.hero.ready .hero-cal-top .hc-pill { animation: hcPill .5s var(--ease) forwards; animation-delay: 1.5s; }
@keyframes hcPill { to { opacity: 1; transform: none; } }
.hc-rows { position: relative; display: flex; flex-direction: column; gap: 12px; }
.hc-row { display: flex; align-items: center; gap: 14px; }
.hc-day { font-family: 'Space Grotesk', sans-serif; font-size: 12px; color: var(--text-mute); width: 32px; flex: none; }
.hc-slot { position: relative; flex: 1; height: 22px; border-radius: 7px; background: #202027; border: 1px solid var(--line-soft); overflow: hidden; }
.hc-slot::before {
  content: ''; position: absolute; inset: 0; transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, rgba(226,72,61,.55), rgba(226,72,61,.26));
}
.hero.ready .hc-slot::before { animation: hcFill .55s var(--ease) forwards; }
.hero.ready .hc-row:nth-child(1) .hc-slot::before { animation-delay: .55s; }
.hero.ready .hc-row:nth-child(2) .hc-slot::before { animation-delay: .72s; }
.hero.ready .hc-row:nth-child(3) .hc-slot::before { animation-delay: .89s; }
.hero.ready .hc-row:nth-child(4) .hc-slot::before { animation-delay: 1.06s; }
.hero.ready .hc-row:nth-child(5) .hc-slot::before { animation-delay: 1.23s; }
.hero.ready .hc-row:nth-child(6) .hc-slot::before { animation-delay: 1.40s; }
@keyframes hcFill { to { transform: scaleX(1); } }

/* =========================================================
   OFERTA — baseline, badge, podsumowanie ceny, porównanie, kroki
   ========================================================= */
.offer-baseline {
  display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 13.5px;
  color: var(--text-dim); border: 1px dashed var(--line); border-radius: 100px;
  padding: 9px 18px; margin-bottom: 4px;
}
.offer-baseline b { color: var(--text); font-weight: 600; }

.tier.featured { border-color: rgba(226,72,61,.42); }
.tier .badge {
  position: absolute; top: -11px; left: 26px;
  font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: var(--accent); border-radius: 100px; padding: 5px 12px;
  box-shadow: 0 6px 18px rgba(226,72,61,.4);
}

.offer-summary {
  display: flex; gap: 18px; align-items: flex-start; margin-top: 34px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--card); padding: 24px 26px;
}
.offer-summary .k {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  white-space: nowrap; padding-top: 3px; flex: none;
}
.offer-summary p { color: var(--text-dim); font-size: 15.5px; }
.offer-summary p b { color: var(--text); font-weight: 600; }

.compare { display: grid; gap: 16px; margin-top: clamp(36px, 5vw, 52px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { border-radius: var(--radius-lg); padding: 30px 28px; border: 1px solid var(--line); }
.compare-col.neg { background: var(--card); }
.compare-col.pos { background: var(--accent-soft); border-color: rgba(226,72,61,.35); }
.compare-col h3 { font-size: 20px; margin-bottom: 18px; }
.compare-col.pos h3 { color: var(--accent); }
.compare-col ul { list-style: none; }
.compare-col li { position: relative; padding: 0 0 13px 28px; font-size: 14.5px; color: var(--text-dim); }
.compare-col li:last-child { padding-bottom: 0; }
.compare-col li b { color: var(--text); font-weight: 600; }
.compare-col.neg li::before { content: '×'; position: absolute; left: 4px; top: -1px; color: var(--text-mute); font-weight: 600; }
.compare-col.pos li::before { content: ''; position: absolute; left: 3px; top: 7px; width: 11px; height: 11px; border-radius: 50%; background: var(--accent-soft); border: 1.5px solid var(--accent); }

.steps { display: grid; gap: 16px; margin-top: clamp(30px, 5vw, 44px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.step-card .n {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 40px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.3px var(--outline); text-stroke: 1.3px var(--outline);
  margin-bottom: 14px;
}
.step-card h4 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-dim); }
.steps .step-card:not(:last-child)::after {
  content: '→'; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  color: var(--outline); font-size: 20px; z-index: 2;
}
@media (max-width: 719px) { .steps .step-card::after { display: none; } }

/* =========================================================
   MODAL — polityka prywatności
   ========================================================= */
.privacy-modal {
  background: var(--card-2); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius);
  max-width: 560px; width: calc(100% - 40px);
  padding: 30px 28px; margin: auto;
}
.privacy-modal::backdrop { background: rgba(0,0,0,.7); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.privacy-modal .btn { padding: 12px 26px; font-size: 15px; }

/* =========================================================
   STRONA PRAWNA (polityka prywatności)
   ========================================================= */
.legal { max-width: 760px; }
.legal :is(p, li, h2, h3, strong, a, span) { text-transform: none; }
.legal h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600;
  color: var(--text); margin: 36px 0 12px; letter-spacing: -0.01em;
}
.legal p, .legal li { color: var(--text-dim); font-size: 15.5px; line-height: 1.7; margin-bottom: 12px; }
.legal strong { color: var(--text); font-weight: 600; }
.legal .meta { color: var(--text-mute); font-size: 13px; margin-bottom: 8px; }
.legal ul { list-style: none; margin: 0 0 12px; }
.legal li { position: relative; padding-left: 22px; }
.legal li::before { content: ''; position: absolute; left: 3px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--accent-2); }

/* =========================================================
   BANER COOKIES
   ========================================================= */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 96;
  max-width: 600px; margin-left: auto; margin-right: auto;
  background: rgba(19,19,23,.94);
  -webkit-backdrop-filter: saturate(140%) blur(14px); backdrop-filter: saturate(140%) blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
  transform: translateY(160%); opacity: 0;
  transition: transform .45s var(--ease), opacity .3s ease;
}
.cookie-banner.show { transform: none; opacity: 1; }
.cookie-banner p { font-size: 13.5px; line-height: 1.55; color: var(--text-dim); margin-bottom: 14px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { flex: 1; padding: 11px 18px; font-size: 14px; box-shadow: none; }
.cookie-actions .btn:hover { box-shadow: none; transform: none; }
@media (min-width: 480px) {
  .cookie-actions { justify-content: flex-end; }
  .cookie-actions .btn { flex: 0 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}

/* =========================================================
   REVEAL ON SCROLL + sticky CTA mobile
   ========================================================= */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s var(--ease); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }

.hero .r-line { opacity: 0; transform: translateY(100%); }
.hero.ready .r-line { animation: heroLine .8s var(--ease) forwards; }
.hero.ready .r-line:nth-child(1) { animation-delay: .05s; }
.hero.ready .r-line:nth-child(2) { animation-delay: .16s; }
.hero.ready .r-line:nth-child(3) { animation-delay: .27s; }
@keyframes heroLine { to { opacity: 1; transform: none; } }
.hero .r-fade { opacity: 0; transform: translateY(12px); }
.hero.ready .r-fade { animation: heroLine .7s var(--ease) forwards; animation-delay: .5s; }
.hero.ready .r-fade.d2 { animation-delay: .62s; }
.hero.ready .r-fade.d3 { animation-delay: .74s; }

.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
  transform: translateY(140%); opacity: 0; pointer-events: none;
  transition: transform .35s var(--ease), opacity .3s ease;
}
.sticky-cta.visible { transform: none; opacity: 1; pointer-events: auto; }
.sticky-cta .btn { box-shadow: 0 12px 34px rgba(0,0,0,.55), 0 6px 24px rgba(226,72,61,.34); }
@media (min-width: 760px) { .sticky-cta { display: none; } }

/* =========================================================
   RESPONSYWNOŚĆ NAV
   ========================================================= */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* =========================================================
   PREFERS-REDUCED-MOTION — wszystko off
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-mesh, .hero .glow, .marquee-track { animation: none !important; }
  .reveal, .hero .r-line, .hero .r-fade { opacity: 1 !important; transform: none !important; animation: none !important; }
  .flow-path { stroke-dashoffset: 0 !important; transition: none; }
  .flow-back-g { opacity: .8 !important; transition: none; }
  .hc-slot::before { transform: scaleX(1) !important; animation: none !important; }
  .hero-cal-top .hc-pill { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero h1 .ul::after { transform: scaleX(1) !important; animation: none !important; }
  * { transition-duration: .001ms !important; }
}


/* ===== dodatki 12.07: cena w kartach wariantów ===== */
.price-big{font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:clamp(26px,3.2vw,34px);color:var(--text);display:block;margin-bottom:4px;letter-spacing:-.01em}
.price-big small{font-size:.44em;color:var(--text-dim);font-weight:500;letter-spacing:0}
