/* ============================================
   RENODESIGN — LP (ads)
   Minimal premium · bazuje na renodesign.pl
   ============================================ */

:root {
  --bg: #FFFFFF;
  --bg-2: #F6F1EA;        /* ciepły cream, sekcje alt */
  --bg-3: #FAF6F0;        /* delikatny cream */
  --ink: #111111;
  --ink-2: #4A4A4A;
  --ink-3: #8A8A8A;
  --ink-4: #B8B8B8;
  --line: #EAE3D4;
  --line-2: #F0EAD9;

  --accent: #B89968;          /* piaskowy beż — akcent marki */
  --accent-dk: #9A7F54;
  --accent-soft: rgba(184, 153, 104, 0.10);

  --btn-fg: #FFFFFF;
  --btn-bg: #111111;
  --btn-bg-hv: #2A2A2A;

  --pkg-standard: #D1C4AA;
  --pkg-standard-2: #E7D9BC;
  --pkg-comfort: #6E7E65;
  --pkg-comfort-2: #BBDCAF;
  --pkg-premium: #858180;
  --pkg-premium-2: #B4B4B4;
  --pkg-lux: #6D779D;
  --pkg-lux-2: #ADD4E5;

  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-sm: 0 2px 10px rgba(20,20,20,.04);
  --shadow: 0 16px 40px rgba(20,20,20,.06);
  --shadow-lg: 0 30px 70px rgba(20,20,20,.10);

  --max: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --space-section: clamp(56px, 7.5vw, 104px);
  --space-section-tight: clamp(40px, 5vw, 68px);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", Georgia, serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select, button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 .45em;
  color: var(--ink);
  text-wrap: balance;
}

/* Typography — prevent awkward line breaks */
p, li, dd, figcaption { text-wrap: pretty; }
.tst__quote,
.case__quote,
.hero__sub,
.hero__badge-lbl,
.truststrip__item,
.pain p,
.pillar p,
.step p,
.step h3,
.pillar h3,
.pain h3,
.pkg__tagline,
.pkg__list li,
.urgency__text,
.final__perks li,
.faq__a-inner,
.final-cta__hint,
.final-cta__step-lbl { text-wrap: balance; }
h1 { font-size: clamp(1.9rem, 3.9vw, 3.1rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.35rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
::selection { background: var(--accent); color: #fff; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-section); }
.section--tight { padding-block: var(--space-section-tight); }
.section--dark { background: var(--ink); color: #fff; }
.section--cream { background: var(--bg-2); }
.section--cream-soft { background: var(--bg-3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}
.section--dark .eyebrow { color: var(--accent); }

/* Underline accent — subtle beige underline instead of yellow highlight */
.accentline {
  background-image: linear-gradient(180deg, transparent 90%, var(--accent) 90%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-bottom: 2px;
}
.italic {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .005em;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
}
.btn--primary:hover { background: var(--btn-bg-hv); }

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: var(--accent-dk); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 15px 25px;
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 15px 25px;
}
.btn--outline:hover { border-color: var(--ink); background: var(--bg-2); }

.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--xl { padding: 22px 38px; font-size: 17px; }
.btn--block { width: 100%; }

.btn__arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
}
.topbar__logo img { height: 34px; width: auto; }
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .18s ease;
  color: var(--ink);
}
.topbar__phone:hover { background: var(--bg-2); }
.topbar__phone-label { color: var(--ink-3); font-weight: 400; font-size: 13px; }
.topbar__cta { padding: 12px 20px; font-size: 14px; }
@media (max-width: 720px) {
  .topbar__phone-label { display: none; }
  .topbar__cta { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 100px) clamp(72px, 10vw, 130px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: clamp(56px, 8vw, 96px); }
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--accent-soft);
  color: var(--accent-dk);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__pill .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 { margin-bottom: 0.45em; }
h1 .italic, h2 .italic, h3 .italic { color: var(--accent-dk); }

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-bottom: 24px;
}
.hero__microtrust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
  font-size: 14px;
}
.hero__microtrust::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero__badge {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__badge-num em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dk);
}
.hero__badge-lbl {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-2);
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__sticker {
  position: absolute;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  max-width: 240px;
}
.hero__sticker-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink-3);
  font-weight: 500;
}
.hero__sticker-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 6px;
  letter-spacing: -0.015em;
}
.hero__sticker-val em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dk);
}
.hero__flag {
  position: absolute;
  left: clamp(16px, 2.5vw, 28px);
  top: clamp(16px, 2.5vw, 28px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.truststrip {
  border-block: 1px solid var(--line);
  padding-block: 28px;
  background: var(--bg-3);
}
.truststrip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  align-items: center;
}
.truststrip__item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-2);
}
.truststrip__item svg { flex: none; color: var(--accent-dk); }

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem__head { max-width: 680px; margin-bottom: 64px; }
.problem__head p { color: var(--ink-2); font-size: 18px; line-height: 1.6; }

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 760px) {
  .problem__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pain {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pain:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.pain__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dk);
  margin-bottom: 24px;
}
.pain h3 {
  margin-bottom: 12px;
}
.pain p {
  color: var(--ink-2);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   SOLUTION — 4 FILARY
   ============================================ */
.solution { background: var(--bg-2); }
.solution__head { max-width: 680px; }
.solution__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 64px;
}
@media (min-width: 720px) { .solution__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .solution__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.pillar {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pillar__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent-dk);
  line-height: 1;
  margin-bottom: 22px;
  display: block;
}
.pillar h3 {
  margin-bottom: 10px;
}
.pillar p { color: var(--ink-2); font-size: 15px; margin: 0; line-height: 1.6; }

/* ============================================
   COUNTERS
   ============================================ */
.counters { background: var(--ink); color: #fff; }
.counters__grid {
  display: grid;
  gap: 36px 28px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 820px) { .counters__grid { grid-template-columns: repeat(4, 1fr); } }
.counter__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #fff;
}
.counter__suffix {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin-left: 2px;
}
.counter__label {
  margin-top: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-4);
  font-weight: 500;
}

/* ============================================
   REALIZACJE — GALERIA
   ============================================ */
.gallery__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 56px;
}
.gallery__head > div { max-width: 520px; }
.gallery__head p { color: var(--ink-2); line-height: 1.6; margin: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1100px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gcard {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  aspect-ratio: 4/5;
  cursor: zoom-in;
}
.gcard--wide { grid-column: span 2; aspect-ratio: 16/10; }
.gcard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gcard:hover img { transform: scale(1.04); }
.gcard__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gcard__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 5px 10px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.gcard__tag--comfort { background: rgba(110,126,101,.9); }
.gcard__tag--premium { background: rgba(133,129,128,.9); }
.gcard__tag--lux { background: rgba(109,119,157,.9); color: #fff; }
.gcard__tag--standard { background: rgba(209,196,170,.95); color: var(--ink); }
.gcard__title { font-weight: 600; font-size: 15px; line-height: 1.3; }

/* Lightbox */
.lbx {
  position: fixed;
  inset: 0;
  background: rgba(12,12,12,.93);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.lbx.open { display: flex; }
.lbx img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lbx__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  display: grid; place-items: center;
  font-size: 20px;
  transition: background .2s ease;
}
.lbx__close:hover { background: rgba(255,255,255,.24); }
.lbx__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  transition: background .2s ease;
}
.lbx__nav:hover { background: rgba(255,255,255,.24); }
.lbx__nav--prev { left: 22px; }
.lbx__nav--next { right: 22px; }

/* ============================================
   PRZED / PO SLIDER (grid 4 kolumn, portrait)
   ============================================ */
.beforeafter { background: var(--bg-2); }
.ba__head { max-width: 680px; margin-bottom: 44px; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ba-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.ba { display: flex; flex-direction: column; gap: 10px; }

.ba__stage {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  box-shadow: var(--shadow);
  background: #000;
}
.ba__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__stage .ba__after {
  clip-path: inset(0 0 0 50%);
}
.ba__handle {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
}
.ba__handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 14px rgba(0,0,0,.32);
}
.ba__handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}
.ba__label {
  position: absolute;
  top: 12px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  border-radius: 999px;
}
.ba__label--before { left: 12px; }
.ba__label--after { right: 12px; }
.ba__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba__input::-webkit-slider-thumb { -webkit-appearance: none; width: 34px; height: 34px; }

.ba__caption {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  padding: 0 4px;
}

/* ============================================
   PAKIETY
   ============================================ */
.packages__head { max-width: 680px; }
.packages__head p { color: var(--ink-2); line-height: 1.6; }

.packages__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 64px;
}
@media (min-width: 720px) { .packages__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .packages__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.pkg {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg__header {
  padding: 56px 28px 26px;
  color: var(--ink);
  position: relative;
}
.pkg--standard .pkg__header { background: var(--pkg-standard-2); }
.pkg--comfort .pkg__header { background: var(--pkg-comfort); color: #fff; }
.pkg--premium .pkg__header { background: var(--pkg-premium); color: #fff; }
.pkg--lux .pkg__header { background: var(--pkg-lux); color: #fff; }

.pkg__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.pkg--standard .pkg__badge { background: rgba(0,0,0,.12); }

.pkg__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-top: 8px;
}
.pkg__tagline {
  font-size: 14px;
  margin-top: 10px;
  opacity: .86;
  line-height: 1.5;
}
.pkg__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pkg__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pkg__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.pkg__list li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex: none;
}
.pkg__cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pkg__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: color .2s ease, gap .2s ease;
}
.pkg__cta a:hover { color: var(--accent-dk); gap: 10px; }

/* ============================================
   CASE STUDY
   ============================================ */
.case {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .case { grid-template-columns: 1.1fr 1fr; }
}
.case__img { aspect-ratio: 4/3; overflow: hidden; }
@media (min-width: 900px) { .case__img { aspect-ratio: auto; } }
.case__img img { width: 100%; height: 100%; object-fit: cover; }
.case__body {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.case__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.case h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: #fff;
  margin: 0;
}
.case h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 28px;
}
.case__metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.025em;
}
.case__metric-lbl {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 8px;
  font-weight: 500;
}
.case__quote {
  font-size: 16px;
  color: #d5d1c9;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}

/* ============================================
   PROCES — TIMELINE
   ============================================ */
.process__head { max-width: 680px; }
.process__list {
  list-style: none;
  padding: 0; margin: 64px 0 0;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 760px) {
  .process__list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .process__list { grid-template-columns: repeat(6, 1fr); gap: 18px; }
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  counter-increment: step;
  transition: border-color .25s ease, transform .25s ease;
}
.step:hover { border-color: var(--accent); transform: translateY(-2px); }
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--accent-dk);
  display: block;
  margin-bottom: 22px;
}
.step__num::after { content: counter(step, decimal-leading-zero); }
.step h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
}
.step p { font-size: 13px; color: var(--ink-3); margin: 0; line-height: 1.5; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__head { max-width: 680px; }
.testimonials__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
@media (min-width: 860px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }
.tst {
  background: var(--bg);
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tst__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.tst__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 3px;
}
.tst__source {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #EA4335 0deg 90deg, #FBBC05 90deg 180deg, #34A853 180deg 270deg, #4285F4 270deg 360deg);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}
.tst__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.tst__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.tst__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dk);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  flex: none;
}
.tst__avatar-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: var(--bg-2);
}
.tst__who { font-size: 14px; line-height: 1.3; min-width: 0; }
.tst__name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tst__loc { color: var(--ink-3); font-size: 13px; margin-top: 3px; }

/* Google Reviews summary + footer */
.greviews__summary[hidden] { display: none; }
#reviews-seeall[hidden] { display: none; }
.greviews__summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
}
.greviews__logo {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #EA4335 0deg 90deg, #FBBC05 90deg 180deg, #34A853 180deg 270deg, #4285F4 270deg 360deg);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
}
.greviews__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.greviews__stars i {
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.greviews__count { color: var(--ink-3); font-size: 13px; }
.greviews__footer {
  margin-top: 44px;
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq__head { max-width: 680px; }
.faq__list {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--ink);
  transition: color .2s ease;
}
.faq__q:hover { color: var(--accent-dk); }
.faq__icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__a-inner { padding: 0 0 28px; color: var(--ink-2); max-width: 780px; line-height: 1.65; }

/* ============================================
   URGENCY STRIPE
   ============================================ */
.urgency {
  background: var(--ink);
  color: #fff;
  padding-block: 28px;
  overflow: hidden;
  position: relative;
}
.urgency__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
.urgency__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  border-radius: 999px;
  text-transform: uppercase;
}
.urgency__tag::before { content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.urgency__text { font-weight: 500; color: #E8E3D4; }

/* ============================================
   FORM / FINAL CTA
   ============================================ */
.final { background: var(--bg-2); }
.final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 900px) {
  .final__grid { grid-template-columns: 1fr 1.1fr; }
}
.final__head { max-width: 52ch; }
.final__head h2 { margin-bottom: 0.5em; }
.final__head p { color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.final__perks {
  list-style: none;
  padding: 0; margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.final__perks li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.final__perks li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex: none;
}

.form {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.form__row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-size: 12px;
  letter-spacing: .05em;
  font-weight: 600;
  color: var(--ink-2);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-3);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.form textarea { resize: vertical; min-height: 100px; }
.form__consent {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  align-items: flex-start;
}
.form__consent input {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex: none;
}
.form__consent a { text-decoration: underline; }
.form__success {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent-dk);
  padding: 20px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  display: none;
  text-align: center;
}
.form__success.show { display: block; }

/* v2 — CTA bez formularza */
.final-cta {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow);
}
.final-cta__hint {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin: 18px 0 8px;
}
.final-cta__steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}
.final-cta__step {
  background: var(--bg-3);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}
.final-cta__step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent-dk);
  letter-spacing: .08em;
}
.final-cta__step-lbl {
  font-size: 13px;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 600;
}
.final-cta__contacts {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-3);
}
.final-cta__contacts a { color: var(--ink); font-weight: 600; }
.final-cta__contacts a:hover { color: var(--accent-dk); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: #C8C4BA;
  padding-block: 80px 32px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer__brand { font-size: 15px; line-height: 1.65; color: #9F9B91; max-width: 40ch; }
.footer__logo { height: 30px; width: auto; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer__bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #7A766D;
  font-size: 12px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .15s ease;
}
.footer__socials a:hover { background: var(--accent); color: #fff; }

/* ============================================
   MOBILE FLOATING CTA
   ============================================ */
.floatcta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 45;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(17,17,17,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.floatcta .btn { flex: 1; padding: 14px 16px; font-size: 14px; }
.floatcta .btn--primary {
  background: #fff;
  color: var(--ink);
}
.floatcta__phone {
  width: 50px; height: 50px; border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  flex: none;
}
@media (max-width: 760px) {
  .floatcta { display: flex; }
  body { padding-bottom: 88px; }
}

/* ============================================
   COOKIE BANNER (Consent Mode v2)
   ============================================ */
.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 520px;
  background: var(--ink);
  color: #E8E3D4;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(24px);
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner a:hover { color: #fff; }
.cookie-banner__text { margin-bottom: 14px; color: #C8C4BA; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  padding: 10px 18px;
  font-size: 13px;
  flex: 1;
  min-width: 140px;
}
.cookie-banner .btn--outline {
  border-color: rgba(255,255,255,.25);
  color: #E8E3D4;
}
.cookie-banner .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}
.cookie-banner .btn--primary {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .btn--primary:hover { background: var(--accent-dk); }

@media (min-width: 640px) {
  .cookie-banner { left: 20px; right: auto; max-width: 440px; }
}

/* Form error box */
.form__error {
  background: #FEE7E0;
  border: 1px solid var(--accent);
  color: var(--accent-dk);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
