/* Baza: istniejący system stron ofertowych BB, oferta-holisticon/index.html. */

    :root {
      --bg: #100d0c;
      --bg-2: #15110f;
      --surface: #1a1512;
      --surface-2: #211a15;
      --line: rgba(255,255,255,.09);
      --line-strong: rgba(255,255,255,.16);
      --ink: #fff;
      --text: #e8e1d8;
      --muted: #a59a8e;
      --faint: #8a8074;
      --gold: #e9b45a;
      --gold-deep: #cf8f33;
      --champagne: #f3e0b2;
      --grad: linear-gradient(96deg,#d6982f 0%,#ecc065 42%,#f5e4ba 100%);
      --grad-btn: linear-gradient(180deg,#f0c574 0%,#dca046 100%);
      --maxw: 960px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; }
    .page {
      min-height: 100vh;
      overflow: hidden;
      background:
        radial-gradient(1100px 520px at 72% -8%, rgba(233,180,90,.16), transparent 60%),
        radial-gradient(900px 600px at 8% 12%, rgba(207,143,51,.07), transparent 55%),
        var(--bg);
    }
    .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
    h1, h2, h3, h4, .logo-text, .btn, .eyebrow, .price-amt { font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif; }
    .gold-text {
      background: var(--grad);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 12.5px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1px;
      background: var(--gold);
      opacity: .7;
    }
    .eyebrow .num { color: var(--champagne); opacity: .85; }
    .topbar {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 26px 40px;
      border-bottom: 1px solid var(--line);
    }
    .logo { display: flex; align-items: center; gap: 14px; }
    .logo svg { display: block; flex: none; }
    .logo-text {
      color: var(--ink);
      font-size: 15px;
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .topbar .tag {
      color: var(--faint);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .hero { position: relative; z-index: 1; padding: 84px 0 70px; }
    .hero h1 {
      max-width: 15ch;
      margin-top: 22px;
      color: var(--ink);
      font-size: clamp(38px, 6.2vw, 68px);
      font-weight: 850;
      line-height: 1.03;
      letter-spacing: 0;
    }
    .hero .sub {
      max-width: 66ch;
      margin-top: 24px;
      color: var(--muted);
      font-size: clamp(17px, 2.1vw, 21px);
      line-height: 1.55;
    }
    .hero .sub + .sub { margin-top: 10px; }
    .hero .sub b { color: var(--text); font-weight: 650; }
    .meta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 28px;
      margin-top: 34px;
      color: var(--faint);
      font-size: 14px;
    }
    .meta-row b { color: var(--text); font-weight: 650; }
    .meta-row .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .8; }
    .cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 36px; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      background: var(--grad-btn);
      box-shadow: 0 8px 30px -10px rgba(233,180,90,.55);
      color: #1b1206;
      cursor: pointer;
      font-size: 15.5px;
      font-weight: 800;
      letter-spacing: .01em;
      padding: 15px 26px;
      text-decoration: none;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -10px rgba(233,180,90,.7); }
    .trust { color: var(--faint); font-size: 13.5px; }
    section.block {
      position: relative;
      z-index: 1;
      padding: 64px 0;
      border-top: 1px solid var(--line);
    }
    .head { margin-bottom: 38px; }
    .head h2 {
      max-width: 24ch;
      margin-top: 16px;
      color: var(--ink);
      font-size: clamp(27px, 3.6vw, 38px);
      font-weight: 850;
      line-height: 1.08;
      letter-spacing: 0;
    }
    .head p { max-width: 70ch; margin-top: 14px; color: var(--muted); font-size: 16.5px; }
    .context-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .context-card, .proof, .package {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--surface);
    }
    .context-card {
      border-radius: 16px;
      padding: 24px 22px;
      min-height: 214px;
      display: flex;
      flex-direction: column;
    }
    .context-card::after, .package::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 2px;
      background: var(--grad);
      opacity: .72;
    }
    .context-kicker {
      color: var(--gold);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .context-card h3 {
      margin-top: 14px;
      color: var(--ink);
      font-size: 18px;
      font-weight: 780;
      line-height: 1.25;
    }
    .context-card p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.5;
    }
    .pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
    .pillar { background: var(--bg); padding: 30px 28px; }
    .pillar:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .pillar .pn { color: var(--gold-deep); font-size: 14px; font-weight: 850; letter-spacing: .05em; }
    .pillar h3 { margin: 10px 0 8px; color: var(--ink); font-size: 19px; font-weight: 750; letter-spacing: 0; }
    .pillar p { color: var(--muted); font-size: 14.5px; line-height: 1.5; }
    .pillar p b { color: var(--text); font-weight: 650; }
    .timeline { position: relative; margin-left: 6px; }
    .timeline::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 6px;
      bottom: 6px;
      width: 1px;
      background: linear-gradient(var(--gold), rgba(233,180,90,.15));
    }
    .tl { position: relative; padding: 0 0 28px 40px; }
    .tl:last-child { padding-bottom: 0; }
    .tl::before {
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      width: 15px;
      height: 15px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      background: var(--bg);
      box-shadow: 0 0 0 4px rgba(233,180,90,.12);
    }
    .tl .when { color: var(--gold); font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .tl h3 { margin: 6px 0 5px; color: var(--ink); font-size: 17.5px; font-weight: 750; }
    .tl p { max-width: 72ch; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
    .packages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
    .package {
      display: flex;
      flex-direction: column;
      border-radius: 22px;
      padding: 34px 30px;
      background: linear-gradient(180deg, var(--surface-2), var(--surface));
    }
    .package.featured { border-color: rgba(233,180,90,.42); box-shadow: 0 30px 70px -42px rgba(233,180,90,.4), inset 0 1px 0 rgba(255,255,255,.04); }
    .package-name { color: var(--gold); font-size: 14px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .price-amt { margin-top: 12px; color: var(--ink); font-size: clamp(32px, 4.7vw, 44px); font-weight: 850; line-height: 1.05; letter-spacing: 0; }
    .price-amt span { color: var(--muted); font-size: 17px; font-weight: 650; }
    .package-desc { margin-top: 12px; color: var(--muted); font-size: 14.5px; }
    .features { display: grid; gap: 12px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
    .feature { display: flex; gap: 10px; color: var(--text); font-size: 14.5px; line-height: 1.45; }
    .feature .ck { flex: none; color: var(--gold); font-weight: 850; }
    .package-note { margin-top: auto; padding-top: 24px; color: var(--faint); font-size: 13.5px; }
    .case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .case-study {
      display: flex;
      flex-direction: column;
      min-height: 252px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--surface);
      padding: 26px 24px;
      text-decoration: none;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .case-study:hover {
      transform: translateY(-2px);
      border-color: rgba(233,180,90,.34);
      background: var(--surface-2);
    }
    .case-study .case-type {
      color: var(--gold);
      font-size: 11.5px;
      font-weight: 850;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .case-study h3 {
      margin-top: 14px;
      color: var(--ink);
      font-size: 21px;
      font-weight: 800;
      line-height: 1.15;
    }
    .case-study p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.5;
    }
    .case-study .case-result {
      color: var(--champagne);
      font-weight: 760;
    }
    .case-study .case-link {
      margin-top: auto;
      padding-top: 24px;
      color: var(--gold);
      font-size: 14px;
      font-weight: 800;
    }
    .trusted-section .head { text-align: center; }
    .trusted-section .head h2 { margin-left: auto; margin-right: auto; }
    .trusted-section .eyebrow { justify-content: center; }
    .trusted-slider {
      max-width: var(--maxw);
      margin: 0 auto;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }
    .trusted-track {
      display: flex;
      align-items: center;
      gap: 64px;
      width: max-content;
      animation: trusted-logo-scroll 24s linear infinite;
    }
    .trusted-slider:hover .trusted-track { animation-play-state: paused; }
    .trusted-logo {
      flex: none;
      display: grid;
      place-items: center;
      min-width: 150px;
      height: 74px;
    }
    .trusted-logo img {
      display: block;
      max-width: 160px;
      max-height: 58px;
      opacity: .82;
      object-fit: contain;
    }
    .trusted-logo.logo-on-light img {
      background: #fff;
      border-radius: 8px;
      padding: 8px;
    }
    @keyframes trusted-logo-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
    .proof { border-radius: 16px; padding: 24px 22px; background: var(--bg-2); }
    .proof h3 { color: var(--ink); font-size: 18px; font-weight: 750; }
    .proof p { margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
    .final {
      border: 1px solid var(--line);
      border-radius: 24px;
      background:
        radial-gradient(700px 300px at 50% 0%, rgba(233,180,90,.14), transparent 60%),
        var(--bg-2);
      padding: 56px 40px;
      text-align: center;
    }
    .final .eyebrow { justify-content: center; }
    .final h2 { max-width: 25ch; margin: 14px auto 0; color: var(--ink); font-size: clamp(28px, 4vw, 40px); font-weight: 850; line-height: 1.08; letter-spacing: 0; }
    .final p { max-width: 60ch; margin: 16px auto 0; color: var(--muted); font-size: 16.5px; }
    .final .cta-row { justify-content: center; }
    .contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 26px; color: var(--muted); font-size: 14.5px; }
    .contact a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
    .contact a:hover { color: var(--gold); border-color: var(--gold); }
    footer { border-top: 1px solid var(--line); padding: 34px 40px; }
    .foot-in { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
    .foot-copy { color: var(--faint); font-size: 13px; }

    @media (max-width: 760px) {
      .wrap { padding: 0 22px; }
      .topbar, footer { padding-left: 22px; padding-right: 22px; }
      .topbar .tag { display: none; }
      .context-grid, .proof-grid, .pillars, .packages, .case-grid { grid-template-columns: 1fr; }
      .hero { padding-top: 58px; }
      .hero h1 { font-size: 42px; }
      .context-card { min-height: 0; }
      .final { padding: 40px 24px; }
      .trusted-track { gap: 42px; animation-duration: 18s; }
    }
  

:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.skip-link { position: absolute; left: 20px; top: -100px; z-index: 20; padding: 12px; background: var(--surface); color: var(--ink); }
.skip-link:focus { top: 12px; }
.topbar { max-width: 1240px; margin: auto; }
.service-nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.service-nav a { color: var(--muted); font-size: 13px; text-decoration: none; padding: 8px 0; }
.service-nav a:hover { color: var(--gold); }
.service-nav a[aria-current="page"] { color: var(--gold); }
.service-nav .nav-contact { color: var(--gold); }
.hero h1 { max-width: 19ch; }
.hero .sub { max-width: 60ch; }
.text-link { color: var(--gold); text-underline-offset: 5px; font-size: 14px; }
.hero-outcomes { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin-top: 30px; color: var(--muted); font-size: 13px; }
.hero-outcomes li::before { content: '•'; color: var(--gold); margin-right: 8px; }
.pillar .output { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--text); }
.channel-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.channel-grid .proof { padding: 22px 18px; }
.channel-grid h3 { font-size: 17px; }
.metric-list { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; }
.metric-row { display: grid; grid-template-columns: 1.05fr 1.1fr 1.25fr; gap: 22px; padding: 24px; border-top: 1px solid var(--line); background: var(--surface); }
.metric-row:first-child { border-top: 0; }
.metric-row p { font-size: 14px; color: var(--muted); }
.metric-row h3 { font-size: 16px; color: var(--ink); line-height: 1.4; }
.metric-row b { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 5px; }
.section-note { max-width: 74ch; margin-top: 24px; font-size: 14px; color: var(--muted); }
.deliverables { padding-left: 18px; color: var(--text); font-size: 14px; margin-top: 20px; }
.deliverables li { padding-left: 4px; margin-bottom: 12px; }
.deliverables li::marker { color: var(--gold); }
.package h3 { color: var(--ink); font-size: 25px; line-height: 1.2; margin-top: 12px; }
.case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 34px; }
.trusted-section .head p { margin-left: auto; margin-right: auto; }
.logo-invert img { filter: brightness(0) invert(1); }
.trusted-track { gap: 0; }
.trusted-logo { width: 210px; }
.slider-control { display: block; margin: 18px auto 0; background: none; border: 1px solid var(--line-strong); border-radius: 99px; padding: 8px 14px; color: var(--muted); font: inherit; font-size: 12px; cursor: pointer; }
.trusted-track.paused { animation-play-state: paused; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-list summary { cursor: pointer; color: var(--ink); font-size: 17px; font-weight: 650; padding-right: 14px; }
.faq-list summary::marker { color: var(--gold); }
.faq-list p { color: var(--muted); font-size: 15px; margin-top: 14px; max-width: 74ch; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12px; color: var(--muted); }
.footer-links a { text-underline-offset: 4px; }
section[id] { scroll-margin-top: 24px; }
@media(max-width: 900px) { .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media(max-width: 760px) {
  .topbar { flex-wrap: wrap; gap: 14px; }
  .service-nav { gap: 8px 20px; }
  .service-nav a { font-size: 12px; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }
  .case-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; gap: 14px; }
  .trusted-logo { width: 180px; }
}
@media(max-width: 420px) { .channel-grid { grid-template-columns: 1fr; } .btn { font-size: 14px; padding: 15px 20px; } }
@media(prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .trusted-slider { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .trusted-logo[aria-hidden] { display: none; }
  .slider-control { display: none; }
}
