    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; overflow-x: clip; max-width: 100vw; }
    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: var(--brown);
      /* clip (not hidden) so position:sticky keeps working inside body */
      overflow-x: clip;
      max-width: 100%;
      word-break: break-word;
      overflow-wrap: break-word;
    }
    body.menu-open { overflow: hidden; }

    /* Global noise texture overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9998;
      pointer-events: none;
      opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 200px 200px;
    }

    :root {
      --red: #ad0018;
      --dark: #1e1710;
      --brown: #2d2217;
      --muted: #6d6964;
      --cream: #f7f3ed;
      --green: #48936a;
      --green-dark: #397855;
      --border: #dcd7d0;
      --red-hover: #a80017;
      --muted-warm: #897d70;
    }

    /* ---- UTILITIES ---- */
    .text-dark   { color: var(--dark); }
    .text-light  { color: var(--cream); }
    .text-white  { color: #fff !important; }
    .text-brown  { color: var(--brown); }
    .text-red    { color: var(--red); }
    .text-muted-warm { color: var(--muted-warm); }
    .text-center { text-align: center; }
    .self-start  { align-self: flex-start; }
    .mt-8  { margin-top: 8px; }
    .mt-12 { margin-top: 12px; }
    .mt-16 { margin-top: 16px; }
    .mt-20 { margin-top: 20px; }
    .mt-36 { margin-top: 36px; }
    .mb-0  { margin-bottom: 0; }
    .mb-16 { margin-bottom: 16px; }
    .stack-16 { display: flex; flex-direction: column; gap: 16px; }
    .btn-fixed { width: 220px; }
    .bg-white  { background: #fff; }
    .stack-12  { display: flex; flex-direction: column; gap: 12px; }
    .social-proof-row { display: flex; align-items: center; gap: 0; }

    /* ---- HERO LAYOUT (shared across pages) ---- */
    .hero-stack { display: flex; flex-direction: column; align-items: center; gap: 32px; width: 100%; }
    .hero-head  { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .hero-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }

    /* ---- CONTAINER: content width 1440px + 80px padding ---- */
    .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 80px;
      width: 100%;
    }

    /* ---- KICKER ---- */
    .kicker {
      font-family: 'Libre Baskerville', serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: -0.36px;
      text-transform: uppercase;
      line-height: 1.2;
      position: relative;
      display: inline-flex;
      align-items: center;
    }
    .kicker::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 1px;
      background: currentColor;
      transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .kicker:hover::after { width: 40px; }
    .kicker-left::after { left: 0; transform: none; }

    /* ---- BUTTONS ---- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 32px;
      border-radius: 999px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      letter-spacing: -0.5px;
      line-height: 1.1;
      cursor: pointer;
      text-decoration: none;
      border: none;
      white-space: nowrap;
    }
    .btn-primary { background: var(--red); color: #fff; }
    .btn-outline  { background: transparent; border: 1px solid rgba(44,51,47,0.12); color: var(--brown); }
    .btn-white    { background: #fff; color: var(--dark); }
    .hero-cta-btn { width: 180px; }
    .hero-cta-row { display: flex; gap: 16px; }

    /* ---- TYPOGRAPHY ---- */
    .h2 {
      font-family: 'Libre Baskerville', serif;
      font-size: 46px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -1.38px;
      color: var(--brown);
      word-break: break-word;
      overflow-wrap: break-word;
      width: 100%;
    }
    .h2 em { font-style: italic; color: var(--red); }

    /* ==================================================
       NAV (no background — transparent over hero)
    ================================================== */
    .nav-wrap {
      position: relative;
      z-index: 10;
      background: transparent;
      /* Overlay the hero: pull the next section up under the nav so the
         leaf texture runs behind it at the very top (nav stays transparent
         until .scrolled kicks in). */
      margin-bottom: -102px;
    }
    .hero-section { padding-top: 102px; }
    .nav-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo { width: 80px; height: 50px; flex-shrink: 0; }
    .nav-logo img { width: 100%; height: 100%; object-fit: contain; }
    /* Logo underline — drawn in CSS (removed from SVG) so it can animate */
    .nav-logo, .footer-logo { position: relative; }
    .nav-logo::after, .footer-logo::after {
      content: '';
      position: absolute;
      left: 7.7%;
      bottom: 0;
      width: 66.3%;
      height: 1.5px;
      background: #030102;
      transform-origin: left;
      animation: logoLineIn 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.2s backwards;
      /* release: line grows back slowly, like ink spreading */
      transition: transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    @keyframes logoLineIn { from { transform: scaleX(0); } }
    @media (hover: hover) and (pointer: fine) {
      .nav-logo:hover::after, .footer-logo:hover::after {
        transform: scaleX(0.25);
        transition: transform 350ms cubic-bezier(0.23, 1, 0.32, 1);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .nav-logo::after, .footer-logo::after { animation: none; }
    }
    .nav-links { display: flex; gap: 12px; align-items: center; }
    .nav-link {
      padding: 8px 12px;
      font-size: 14px;
      color: var(--brown);
      text-decoration: none;
      letter-spacing: -0.14px;
      border-radius: 12px;
      position: relative;
      white-space: nowrap;
    }
    /* active indicator handled by JS .nav-indicator element */

    /* ==================================================
       HERO
    ================================================== */
    .hero-section {
      position: relative;
      overflow: hidden;
    }
    .hero-texture {
      position: absolute;
      top: 0; right: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
    }
    .hero-texture img {
      position: absolute;
      top: 0; right: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }
    /* Gradient fade at bottom so texture doesn't hard-cut */
    .hero-texture::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to bottom, transparent, #fff);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
      padding: 56px 80px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 72px;
    }
    .hero-copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 56px;
      width: 100%;
      padding-bottom: 56px;
    }
    .hero-title {
      font-family: 'Libre Baskerville', serif;
      font-size: 56px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -1.68px;
      color: var(--brown);
      text-align: center;
      word-break: break-word;
      overflow-wrap: break-word;
      width: 100%;
    }
    .hero-title em { color: var(--red); font-style: italic; }
    .hero-sub {
      font-size: 18px;
      color: var(--muted);
      line-height: 1.5;
      text-align: center;
      max-width: 682px;
      width: 100%;
    }
    .avatars { display: flex; align-items: center; }
    .avatar {
      width: 32px; height: 32px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--border);
      border: 2px solid rgba(255,255,255,0.85);
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      margin-right: -10px;
    }
    .avatar:last-child { margin-right: 0; }
    .avatar img { width: 100%; height: 100%; object-fit: cover; }

    /* video */
    .hero-video {
      width: 100%;
      max-width: 1200px;
      height: 675px;
      border-radius: 24px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-video img.bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .hero-video-overlay {
      position: absolute; inset: 0;
      background: rgba(30,23,16,0.5);
    }
    .play-btn { width: 140px; height: 140px; position: relative; z-index: 2; }
    .play-btn img { width: 100%; height: 100%; }
    .hero-photo-placeholder { cursor: default; }
    .hero-noise {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    /* ---- VIDEO LIGHTBOX ---- */
    .video-overlay {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.35s ease;
      cursor: pointer;
    }
    .video-overlay.active { background: rgba(0,0,0,0.85); }
    .video-wrap {
      width: 90vw; max-width: 1100px; aspect-ratio: 16/9;
      border-radius: 16px; overflow: hidden;
      transform: scale(0.85); opacity: 0;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.3s ease;
    }
    .video-overlay.active .video-wrap {
      transform: scale(1); opacity: 1;
    }
    .video-wrap iframe {
      width: 100%; height: 100%; border: none;
      background: #000;
    }

    /* ==================================================
       STATS BAR
    ================================================== */
    .stats-bar {
      width: 100%;
    }
    .stats-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 80px;
      display: flex;
      justify-content: center;
    }
    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 250px;
      padding: 32px;
      text-align: center;
      border-right: 1px solid rgba(30,23,16,0.12);
    }
    .stat:last-child { border-right: none; }
    .stat-value {
      font-family: 'Libre Baskerville', serif;
      font-size: 32px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -1.6px;
      white-space: nowrap;
    }
    .stat-value.red   { color: var(--red); }
    .stat-value.green { color: var(--green); }
    .stat-label { font-size: 14px; color: var(--brown); line-height: 1.5; letter-spacing: 0.14px; word-break: break-word; }

    /* ==================================================
       PAIN POINTS
    ================================================== */
    .pain-section { width: 100%; padding: 96px 0; }
    .pain-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .section-headline {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
      max-width: 880px;
      width: 100%;
      margin-bottom: 24px;
    }
    .pain-grid {
      display: flex;
      gap: 16px;
      width: 100%;
      justify-content: center;
      padding-top: 50px;
    }
    .pain-card {
      flex: 1;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
    }
    /* Vertical separator: 208px line centered between cards (per design) */
    .pain-card::after {
      content: '';
      position: absolute;
      right: -8px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 208px;
      background: rgba(30,23,16,0.12);
    }
    .pain-card:last-child::after { display: none; }
    .pain-title {
      font-family: 'Libre Baskerville', serif;
      font-size: 22px;
      font-weight: 700;
      line-height: 1.5;
      letter-spacing: -0.22px;
      color: var(--brown);
    }
    .pain-title em { color: var(--red); font-style: italic; }
    .pain-body { font-size: 14px; color: var(--brown); line-height: 1.5; letter-spacing: 0.14px; }

    /* ==================================================
       CONCEPT (dark, full-width bg)
    ================================================== */
    .concept-section {
      background: var(--dark);
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .concept-bg {
      position: absolute; inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .concept-bg img {
      width: 100%; height: 100%; object-fit: cover; opacity: 0.05;
      /* Barely-there drift: tiny velocity, GPU-only (transform), very long cycle */
      animation: textureDrift 80s ease-in-out infinite alternate;
      will-change: transform;
    }
    @keyframes textureDrift {
      from { transform: scale(1.06) translate(0, 0); }
      to   { transform: scale(1.06) translate(-1.6%, -1.2%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .concept-bg img { animation: none; }
    }
    .h2-light { color: #fff; }

    /* Row 1 — two columns */
    .concept-row1 {
      position: relative; z-index: 1;
      max-width: 1440px; margin: 0 auto;
      padding: 104px 80px 0;
      display: flex;
      gap: 56px;
      align-items: flex-start;
    }
    .concept-left {
      flex: 1; min-width: 0;
      display: flex; flex-direction: column;
      justify-content: space-between;
      align-self: stretch;
      gap: 40px;
    }
    .concept-head { display: flex; flex-direction: column; gap: 12px; }

    /* Chart */
    .concept-chart {
      width: 100%; max-width: 612px; height: 340px;
      border-radius: 24px;
      position: relative; overflow: hidden;
      flex-shrink: 1;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .concept-chart img.bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.05;
    }
    .chart-green-line {
      position: absolute; height: 2px;
      background: var(--green-dark);
      left: 0; top: 170px; width: 100%;
    }
    /* Left label column in chart */
    .chart-lbl {
      font-family: 'Libre Baskerville', serif;
      font-size: 14px; color: #fff;
      position: absolute; line-height: 1.5; letter-spacing: -0.42px;
      white-space: nowrap;
    }
    /* Animated word scroller in chart */
    .chart-scroller-container {
      position: absolute;
      left: 186px; right: 0; top: 0; bottom: 0;
      overflow: hidden;
      user-select: none;
      cursor: grab;
    }
    .chart-scroller { position: absolute; inset: 0; }
    .nad-layer {
      clip-path: inset(0 0 50% 0);
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.3) 30%, white 85%, white 100%);
      mask-image: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.3) 30%, white 85%, white 100%);
    }
    .pod-layer {
      clip-path: inset(50% 0 0 0);
      -webkit-mask-image: linear-gradient(to bottom, white 0%, white 15%, rgba(255,255,255,0.3) 70%, transparent 100%);
      mask-image: linear-gradient(to bottom, white 0%, white 15%, rgba(255,255,255,0.3) 70%, transparent 100%);
    }
    .chart-scroller-inner {
      display: flex;
      flex-direction: column;
      margin-top: -6px;
      /* Revolver: 3 words visible per half, slow scroll, ease-in per step */
      animation: chartStep 28s linear infinite;
    }
    .concept-section:not(.concept-animated) .chart-scroller-inner {
      animation-play-state: paused;
    }
    .chart-scroller-inner span {
      font-family: 'Libre Baskerville', serif;
      font-size: 15px;
      display: flex; align-items: center; justify-content: center;
      height: 44px;
      white-space: nowrap;
      user-select: none;
    }
    .nad-layer .chart-scroller-inner span { color: #fff; }
    .pod-layer .chart-scroller-inner span { color: rgba(255,255,255,0.52); font-style: italic; }
    @keyframes chartStep {
      0%     { transform: translateY(0); }
      10.6%  { transform: translateY(0); animation-timing-function: cubic-bezier(0.42, 0, 1, 1); }
      12.5%  { transform: translateY(-6.25%); }
      23.1%  { transform: translateY(-6.25%); animation-timing-function: cubic-bezier(0.42, 0, 1, 1); }
      25%    { transform: translateY(-12.5%); }
      35.6%  { transform: translateY(-12.5%); animation-timing-function: cubic-bezier(0.42, 0, 1, 1); }
      37.5%  { transform: translateY(-18.75%); }
      48.1%  { transform: translateY(-18.75%); animation-timing-function: cubic-bezier(0.42, 0, 1, 1); }
      50%    { transform: translateY(-25%); }
      60.6%  { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.42, 0, 1, 1); }
      62.5%  { transform: translateY(-31.25%); }
      73.1%  { transform: translateY(-31.25%); animation-timing-function: cubic-bezier(0.42, 0, 1, 1); }
      75%    { transform: translateY(-37.5%); }
      85.6%  { transform: translateY(-37.5%); animation-timing-function: cubic-bezier(0.42, 0, 1, 1); }
      87.5%  { transform: translateY(-43.75%); }
      98.1%  { transform: translateY(-43.75%); animation-timing-function: cubic-bezier(0.42, 0, 1, 1); }
      100%   { transform: translateY(-50%); }
    }

    /* Right side — photo blob */
    .concept-right {
      flex: 1; min-width: 0;
      max-width: 612px; height: 636px;
      position: relative;
      overflow: hidden;
    }
    .concept-right-inner {
      position: absolute;
      height: 636px; width: 554px;
      left: 29px; top: 0;
      overflow: hidden;
      border-radius: 24px;
    }
    /* Word cloud words behind the photo blob */
    .cloud-word {
      font-family: 'Libre Baskerville', serif;
      font-size: 12px; color: #fff;
      position: absolute;
      transform: translate(-50%, -50%);
      text-align: center;
      line-height: 1.55;
    }
    /* Photo: border-radius + overflow on the element wrapping <img> */
    .concept-photo {
      position: absolute;
      left: 0; top: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      border-radius: 24px;
      overflow: hidden;
    }
    .concept-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }

    /* ---- Scroll-in animation ---- */
    .concept-head,
    .concept-chart,
    .concept-right-inner {
      /* gentle rise: strong ease-out, no overshoot — delicate, low velocity */
      transition: opacity 0.7s ease,
                  transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .concept-head        { transition-delay: 0s; }
    .concept-right-inner { transition-delay: 0.15s; }
    .concept-chart       { transition-delay: 0.35s; }
    /* initial hidden state (before animation fires) */
    .concept-section:not(.concept-animated) .concept-head,
    .concept-section:not(.concept-animated) .concept-chart,
    .concept-section:not(.concept-animated) .concept-right-inner {
      opacity: 0;
      transform: translateY(28px);
    }
    /* Green line grows after chart appears */
    .chart-green-line {
      transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
    }
    .concept-section:not(.concept-animated) .chart-green-line {
      width: 0 !important;
    }

    /* Row 2 — centered quote */
    .concept-row2 {
      position: relative; z-index: 1;
      max-width: 1440px; margin: 0 auto;
      padding: 80px 80px 104px;
      display: flex;
      justify-content: center;
    }
    .concept-quote {
      max-width: 914px;
      display: flex; flex-direction: column; gap: 20px;
      padding: 40px;
      border-radius: 16px;
    }
    .concept-quote p {
      font-family: 'Inter', sans-serif;
      font-style: italic;
      font-size: 20px;
      line-height: 1.5;
      letter-spacing: 0.2px;
      text-align: center;
    }

    /* ==================================================
       ETAPY (full-width section, container inside)
    ================================================== */
    .etapy-section { width: 100%; padding: 96px 0; }
    .etapy-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 56px;
    }
    .etapy-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 56px;
      display: flex;
      gap: 56px;
      align-items: stretch;
      width: 100%;
      position: relative;
      overflow: hidden;
    }
    .etapy-card-texture { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .etapy-card-texture img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
    .etapy-card-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 32px;
      position: relative;
      z-index: 1;
    }
    .program-title {
      font-family: 'Libre Baskerville', serif;
      font-size: 40px; font-weight: 700;
      color: var(--red); letter-spacing: -0.8px; line-height: 1;
    }
    .red-bar { height: 4px; background: var(--red); border-radius: 1px; width: 100%; }
    .program-body { font-size: 16px; color: var(--dark); line-height: 1.5; letter-spacing: 0.16px; }
    .bullet-list { display: flex; flex-direction: column; gap: 16px; }
    .bullet-item { display: flex; align-items: center; gap: 8px; }
    .bullet-dot  { width: 16px; height: 4px; background: var(--red); border-radius: 1px; flex-shrink: 0; }
    .bullet-text { font-size: 14px; color: var(--dark); line-height: 1.5; }
    .btn-row { display: flex; gap: 16px; }
    .btn-row .btn { flex: 1; }

    .etapy-card-right {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      position: relative;
      z-index: 1;
    }
    .date-card {
      border-radius: 24px;
      padding: 32px;
      width: 100%;
      max-width: 382px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
    }
    .date-card-bar {
      position: absolute;
      left: 0; top: 50%; transform: translateY(-50%);
      width: 4px; height: 185px;
      background: var(--red); border-radius: 1px;
    }
    .date-title {
      font-family: 'Libre Baskerville', serif;
      font-size: 40px; font-weight: 700;
      color: var(--dark); letter-spacing: -1.2px; line-height: 1.2;
    }
    .date-sub { font-size: 14px; color: var(--muted-warm); line-height: 1.5; }
    .date-note {
      font-family: 'Libre Baskerville', serif;
      font-style: italic; font-size: 14px;
      color: var(--dark); letter-spacing: -0.14px; line-height: 1.5;
      padding-top: 12px;
      border-top: 1px solid rgba(30,23,16,0.25);
    }
    .programs-grid {
      display: flex; gap: 32px;
      width: 100%; align-items: stretch;
      min-height: 280px;
    }
    .prog-card {
      flex: 1;
      border-radius: 24px;
      padding: 48px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      border: 1px solid var(--border);
    }
    .prog-card.green-bg { background: #eff1ee; }
    .prog-card.white-bg { background: #fff; }
    .prog-kicker-row { display: flex; align-items: center; gap: 16px; }
    .prog-title-sm {
      font-family: 'Libre Baskerville', serif;
      font-size: 22px; font-weight: 700;
      color: var(--dark); letter-spacing: -0.44px; line-height: 1.2;
    }
    .prog-body { font-size: 14px; color: var(--dark); line-height: 1.5; flex: 1; }
    .link-btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; letter-spacing: -0.5px;
      text-decoration: none; cursor: pointer;
      background: none; border: none; padding: 0;
    }
    .link-btn.green { color: var(--green); }
    .link-btn.red   { color: var(--red); }
    .link-btn svg   { width: 24px; height: 24px; }
    .kicker-bar-red  { display: block; flex: 1; height: 4px; background: var(--red); border-radius: 99px; min-width: 0; transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1); transform-origin: left; }
    .kicker-bar-dark { display: block; flex: 1; height: 4px; background: var(--dark); border-radius: 99px; transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1); transform-origin: left; }
    /* P-PQ card on any page: green kicker */
    .prog-card.green-bg .kicker-bar-red { background: var(--green-dark); }

    /* ==================================================
       TESTIMONIALS (cream bg, full width)
    ================================================== */
    .testimonials-section {
      background: var(--cream);
      width: 100%;
      overflow: hidden;
    }
    .testimonials-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 96px 0 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 56px;
    }
    .testimonials-head {
      display: flex; flex-direction: column;
      align-items: center; gap: 16px;
      max-width: 880px; text-align: center;
      padding: 0 80px;
    }
    .body-sub { font-size: 16px; color: var(--muted); line-height: 1.5; max-width: 600px; }

    /* Carousel per design: 3 visible cards, sides rotated ±6°, opacity 0.6 */
    /* clip-x prevents horizontal scrollbar; visible-y keeps tilted card edges */
    .testimonials-section { overflow-x: clip; overflow-y: visible; }
    .testimonial-carousel {
      position: relative;
      height: 532px;
      touch-action: pan-y;
      width: 100%;
      overflow: visible;
      touch-action: pan-y;
    }
    .tcard {
      background: #fff;
      border-radius: 24px;
      padding: 48px 40px;
      width: 428px;
      height: 489px;
      position: absolute;
      left: 50%;
      top: 21px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      text-align: center;
      cursor: grab;
      user-select: none;
      /* iOS-like spring: long settle, no bounce, very fluid */
      transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1),
                  opacity   0.7s cubic-bezier(0.32, 0.72, 0, 1);
      will-change: transform, opacity;
    }
    /* While dragging, cards chase the pointer with the same spring
       as the arrow click — elastic, fluid follow */
    .testimonial-carousel.dragging .tcard {
      transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
                  opacity   0.45s cubic-bezier(0.32, 0.72, 0, 1);
      cursor: grabbing;
    }
    .tcard:active { cursor: grabbing; }
    .tcard[data-pos="0"] {
      transform: translateX(calc(-50% + var(--drag, 0px))) rotate(0deg) scale(1);
      z-index: 5; opacity: 1;
    }
    .tcard[data-pos="-1"] {
      transform: translateX(calc(-50% - 474px + var(--drag, 0px))) rotate(-6deg) scale(0.95);
      z-index: 4; opacity: 0.6;
    }
    .tcard[data-pos="1"] {
      transform: translateX(calc(-50% + 474px + var(--drag, 0px))) rotate(6deg) scale(0.95);
      z-index: 4; opacity: 0.6;
    }
    .tcard[data-pos="-2"] {
      transform: translateX(calc(-50% - 960px + var(--drag, 0px))) rotate(-10deg) scale(0.9);
      z-index: 3; opacity: 0; pointer-events: none;
    }
    .tcard[data-pos="2"] {
      transform: translateX(calc(-50% + 960px + var(--drag, 0px))) rotate(10deg) scale(0.9);
      z-index: 3; opacity: 0; pointer-events: none;
    }
    .tcard[data-pos="-3"] {
      transform: translateX(calc(-50% - 1440px)) rotate(-12deg) scale(0.85);
      z-index: 2; opacity: 0; pointer-events: none;
    }
    .tcard[data-pos="3"] {
      transform: translateX(calc(-50% + 1440px)) rotate(12deg) scale(0.85);
      z-index: 2; opacity: 0; pointer-events: none;
    }
    /* Card making the circular wrap jump — moves instantly, invisible */
    .tcard.no-transition { transition: none !important; }
    .testimonial-tag {
      font-size: 14px; color: var(--red);
      line-height: 1.5; text-align: center; width: 100%;
    }
    .testimonial-quote {
      font-family: 'Libre Baskerville', serif;
      font-size: 22px; font-weight: 400;
      color: var(--brown); line-height: 1.5; letter-spacing: -0.44px;
      text-align: center;
      flex: 1;
      display: flex;
      align-items: center;
    }
    .testimonial-author { display: flex; align-items: center; justify-content: center; gap: 8px; }
    .author-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--border); flex-shrink: 0; }
    .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .author-name { font-size: 16px; color: var(--brown); line-height: 1.5; }
    .carousel-nav { display: flex; gap: 16px; margin-top: -24px; }
    .carousel-btn {
      display: flex; align-items: center; justify-content: center;
      padding: 8px; border-radius: 99px; cursor: pointer;
      border: none; background: none;
      transition: background 120ms cubic-bezier(0.23,1,0.32,1);
    }
    .carousel-btn:hover { background: rgba(30,23,16,0.06); }
    .carousel-btn:active { transform: scale(0.95); transition-duration: 70ms; }
    .carousel-btn svg { width: 20px; height: 20px; }

    /* ==================================================
       TEAM
    ================================================== */
    .team-section { width: 100%; overflow: hidden; }
    .team-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 96px 80px;
      display: flex;
      gap: 56px;
      align-items: center;
    }
    .team-content { flex: 1; display: flex; flex-direction: column; gap: 16px; }
    .body-lg { font-size: 16px; color: var(--muted); line-height: 1.5; max-width: 600px; }
    .body-lg em { font-style: italic; }
    .team-photos {
      width: 612px; height: 612px;
      flex-shrink: 0; position: relative;
    }
    .team-photo { position: absolute; border-radius: 24px; overflow: hidden; z-index: 2; }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; }
    .team-photo-a { width: 253px; height: 351px; top: 0;       right: 0; }
    .team-photo-b { width: 253px; height: 351px; top: 50%;     left: 0; transform: translateY(-50%); }
    .team-photo-c { width: 254px; height: 351px; bottom: 48px; left: 50%; transform: translateX(-50%); z-index: 3; }
    /* Bars sit BEHIND the photos (per design layer order), peeking out below each one */
    .team-bar-red   { position: absolute; z-index: 1; height: 12px; width: 254px; background: var(--red);        border-radius: 6px; bottom: 27px;  left: 179px; }
    .team-bar-green { position: absolute; z-index: 1; height: 12px; width: 254px; background: var(--green-dark); border-radius: 6px; bottom: 111px; left: 0; }
    .team-bar-red2  { position: absolute; z-index: 1; height: 12px; width: 254px; background: var(--red);        border-radius: 6px; bottom: 241px; left: 358px; }
    /* Bars grow on scroll reveal, then respond to photo hover */
    .team-bar-red, .team-bar-green, .team-bar-red2 {
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    }
    [data-reveal].visible .team-bar-red   { transform: scaleX(1); transition-delay: 0.3s; }
    [data-reveal].visible .team-bar-green { transform: scaleX(1); transition-delay: 0.45s; }
    [data-reveal].visible .team-bar-red2  { transform: scaleX(1); transition-delay: 0.6s; }
    /* Photo hover → associated bar shrinks slightly */
    @media (hover: hover) and (pointer: fine) {
      .team-photo { transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
      .team-photo-c:hover ~ .team-bar-red   { transform: scaleX(0.85); transition-delay: 0s; }
      .team-photo-b:hover ~ .team-bar-green  { transform: scaleX(0.85); transition-delay: 0s; }
      .team-photo-a:hover ~ .team-bar-red2   { transform: scaleX(0.85); transition-delay: 0s; }
    }

    /* ==================================================
       FAQ (dark, full-width bg)
    ================================================== */
    .faq-section { background: var(--dark); position: relative; width: 100%; overflow: hidden; }
    .faq-bg { position: absolute; inset: 0; pointer-events: none; }
    .faq-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
    .faq-inner {
      position: relative; z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px;
      display: flex;
      gap: 56px;
      align-items: flex-start;
    }
    .faq-left  { flex: 1; display: flex; flex-direction: column; gap: 16px; }
    .faq-right { flex: 1; display: flex; flex-direction: column; }
    .h2-faq {
      font-family: 'Libre Baskerville', serif;
      font-size: 46px; font-weight: 400;
      line-height: 1.2; letter-spacing: -1.38px; color: var(--cream);
    }
    .faq-sub { font-size: 16px; color: var(--muted-warm); line-height: 1.5; }
    .faq-item {
      display: flex;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-q { font-size: 18px; font-weight: 500; color: var(--cream); line-height: 1.2; letter-spacing: -0.18px; flex: 1; }
    .faq-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .faq-icon svg { width: 20px; height: 20px; }

    /* ==================================================
       TAGLINE
    ================================================== */
    .tagline-section { width: 100%; }
    .tagline-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 120px 280px 96px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .tagline-text {
      font-family: 'Libre Baskerville', serif;
      font-size: 46px; font-weight: 400;
      line-height: 1.2; letter-spacing: -1.38px;
      color: var(--brown); max-width: 880px;
    }
    .tagline-text em { font-style: italic; color: var(--red); }
    /* Word-by-word reveal — driven by scroll position (see JS).
       Unrevealed words stay dimmed so the text reads as it lights up. */
    .tw {
      display: inline-block;
      opacity: 0.12;
      transform: translateY(10px);
      filter: blur(2px);
      transition: opacity 0.45s cubic-bezier(0.23, 1, 0.32, 1),
                  transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
                  filter 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .tw.revealed {
      filter: blur(0);
    }
    .tw.revealed {
      opacity: 1;
      transform: none;
    }

    /* ==================================================
       CTA DARK (full-width, inner card)
    ================================================== */
    .cta-section { width: 100%; padding: 80px 0; }
    .cta-outer {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 80px;
    }
    .cta-inner {
      background: var(--dark);
      border-radius: 32px;
      padding: 144px 80px;
      display: flex; flex-direction: column;
      align-items: center; gap: 40px;
      position: relative; overflow: hidden;
    }
    .cta-bg-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; opacity: 0.1; pointer-events: none;
    }
    .cta-content {
      display: flex; flex-direction: column;
      align-items: center; gap: 16px;
      max-width: 880px; text-align: center;
      position: relative; z-index: 1;
    }
    .cta-title {
      font-family: 'Libre Baskerville', serif;
      font-size: 46px; font-weight: 400;
      color: var(--cream); line-height: 1.2; letter-spacing: -1.38px;
    }
    .cta-sub { font-size: 16px; color: var(--cream); line-height: 1.5; }
    .cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; z-index: 1; }
    .cta-email { display: flex; align-items: center; gap: 4px; }
    .cta-email a {
      font-size: 14px; color: var(--cream); text-decoration: none; line-height: 1.5;
      position: relative;
    }
    /* Underline draws in from the left on hover */
    .cta-email a::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .cta-email a:hover::after { transform: scaleX(1); }

    /* ==================================================
       FOOTER (cream bg, full width)
    ================================================== */
    footer {
      background: var(--cream);
      border-top: 1px solid var(--border);
      width: 100%;
    }
    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 56px 80px 32px;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 16px;
    }
    .footer-brand   { display: flex; flex-direction: column; gap: 24px; }
    .footer-logo    { width: 75px; }
    .footer-logo img { display: block; width: 75px; height: 47px; }
    .footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.5; }
    .footer-col     { display: flex; flex-direction: column; gap: 16px; }
    .footer-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(107,93,79,0.5); line-height: 1.5; }
    .footer-links   { display: flex; flex-direction: column; gap: 16px; }
    .footer-link    { font-size: 16px; color: var(--dark); text-decoration: none; line-height: 1.5; }
    .footer-bottom  { border-top: 1px solid var(--border); padding-top: 33px; text-align: center; }
    .footer-copy    { font-size: 14px; color: var(--muted); }

  /* ==================================================
     HAMBURGER
  ================================================== */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    position: relative;
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  body.menu-open .nav-hamburger { gap: 0; }
  body.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(2px) rotate(45deg); }
  body.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-2px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  /* When menu is open: keep nav visible + fixed on screen, remove
     backdrop-filter (it creates a containing block that breaks
     position:fixed on children like .mobile-menu) */
  body.menu-open .nav-wrap {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  body.menu-open .nav-inner {
    background: #fff;
  }
  .mobile-menu a {
    padding: 14px 24px;
    font-size: 18px;
    color: var(--brown);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-menu .btn {
    margin: 16px 24px 0;
    justify-content: center;
    color: #fff;
  }

  /* ==================================================
     TABLET — 1024px
  ================================================== */
  @media (max-width: 1024px) {
    .hero-inner,
    .concept-inner,
    .faq-inner,
    .team-inner,
    .etapy-inner,
    .testimonials-inner,
    .footer-inner,
    .cta-outer,
    .tagline-inner,
    .pain-inner,
    .stats-inner {
      padding-left: 40px;
      padding-right: 40px;
    }
    .hero-title   { font-size: 44px; }
    .h2           { font-size: 36px; }
    .h2-faq       { font-size: 36px; }
    .cta-title    { font-size: 36px; }
    .tagline-text { font-size: 36px; }
    .tagline-inner { padding: 80px 80px 80px; }

    /* Concept: shrink right column to fit tablet width */
    .concept-right { width: 420px; height: 440px; }
    .concept-right-inner { width: 100%; height: 100%; left: 0; }
    .concept-chart { width: 100%; }
    .concept-row1 { gap: 40px; }

    /* Team — column layout, photos ~33% each */
    .team-inner { flex-direction: column; gap: 40px; padding-top: 72px; padding-bottom: 72px; }
    .team-photos {
      width: 100%;
      height: auto !important;
      display: flex; gap: 12px;
    }
    .team-photo {
      position: relative !important;
      top: auto !important; bottom: auto !important;
      left: auto !important; right: auto !important;
      transform: none !important;
      flex: 1;
      min-width: 0;
      border-radius: 16px;
    }
    .team-photo-a, .team-photo-b, .team-photo-c {
      width: 0 !important; height: 380px !important;
    }
    .team-bar-red, .team-bar-green, .team-bar-red2 { display: none !important; }
    .body-lg { max-width: 100%; }

    .tcard[data-pos="-1"] { transform: translateX(calc(-50% - 400px)) rotate(-6deg); }
    .tcard[data-pos="1"]  { transform: translateX(calc(-50% + 400px)) rotate(6deg); }
    .tcard[data-pos="-3"] { transform: translateX(calc(-50% - 1200px)) rotate(-10deg) scale(0.85); opacity: 0; pointer-events: none; }
    .tcard[data-pos="3"]  { transform: translateX(calc(-50% + 1200px)) rotate(10deg) scale(0.85); opacity: 0; pointer-events: none; }
  }

  /* ==================================================
     MOBILE — 768px
  ================================================== */
  @media (max-width: 768px) {
    /* Global overflow guard — clip (not hidden) preserves sticky nav */
    section, footer, nav, .nav-wrap { overflow-x: clip; max-width: 100vw; }
    .hero-inner, .concept-inner, .faq-inner, .team-inner,
    .etapy-inner, .testimonials-inner, .footer-inner,
    .pain-inner, .stats-inner, .tagline-inner, .cta-outer { width: 100%; max-width: 100%; }
    /* All flex children must not overflow */
    .concept-left, .concept-right, .faq-left, .faq-right,
    .team-content, .etapy-card-left, .etapy-card-right { min-width: 0; width: 100%; }

    /* Nav */
    .nav-inner { padding: 16px 20px; position: relative; z-index: 1001; }
    .nav-wrap { margin-bottom: -72px; }
    .hero-section { padding-top: 72px; }
    .nav-links  { display: none; }
    .nav-inner > .btn { display: none; }
    .nav-hamburger { display: flex; }

    /* All inner containers → 20px padding */
    .hero-inner,
    .concept-inner,
    .faq-inner,
    .team-inner,
    .etapy-inner,
    .testimonials-inner,
    .footer-inner,
    .pain-inner,
    .stats-inner {
      padding-left: 20px;
      padding-right: 20px;
    }
    .cta-outer { padding-left: 16px; padding-right: 16px; }

    /* Hero */
    .hero-inner { padding-top: 36px; gap: 40px; }
    .hero-title  { font-size: 34px; letter-spacing: -0.5px; }
    .hero-sub    { font-size: 16px; }
    .hero-copy   { gap: 36px; padding-bottom: 24px; }
    .hero-video  { height: 300px; border-radius: 16px; }
    .play-btn    { width: 72px; height: 72px; }

    /* Buttons taller on mobile */
    .btn { padding: 16px 32px; font-size: 15px; }

    /* Hero CTA row stacks vertically */
    .hero-cta-row { flex-direction: column; align-items: center; width: 100%; }
    .hero-cta-btn { width: 100% !important; max-width: 320px; }

    /* Stats bar — stacked, centered (per Figma mobile) */
    .stats-inner { flex-direction: column; padding: 0 20px; }
    .stat {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid rgba(30,23,16,0.12);
      padding: 24px 32px;
      text-align: center;
    }
    .stat:last-child { border-bottom: none; }
    .stat-value { font-size: 32px; }
    .stat-label { max-width: none; }

    /* Section headings — Figma mobile sizes, no hyphenation */
    .h2, .h2-faq  { font-size: 32px; letter-spacing: -0.96px; white-space: normal !important; max-width: 100%; }
    .hero-title    { font-size: 37px; letter-spacing: -1.11px; white-space: normal !important; }
    .hero-title br { display: none; }
    .cta-title     { font-size: 32px; white-space: normal !important; }
    .tagline-text  { font-size: 32px; white-space: normal !important; }
    .pain-title    { font-size: 22px; white-space: normal !important; }
    .section-headline { max-width: 100%; }
    /* Prevent kicker underline from overflowing */
    .kicker { max-width: 100%; white-space: normal; }

    /* More spacing between sections on mobile */
    .pain-section, .etapy-section, .cta-section { padding: 72px 0; }
    .concept-row1 { padding-top: 72px !important; }
    .concept-row2 { padding-top: 72px !important; padding-bottom: 72px !important; }
    .tagline-inner { padding-top: 80px; padding-bottom: 80px; }
    .team-inner { padding-top: 80px; padding-bottom: 80px; }
    .faq-inner { padding-top: 72px; padding-bottom: 72px; }

    /* Pain points — stacked with horizontal borders */
    .pain-inner   { gap: 0; overflow: hidden; }
    .pain-grid    { flex-direction: column; gap: 0; padding-top: 20px; width: 100%; }
    .pain-card    { padding: 20px 0; width: 100%; max-width: 100%; align-items: center; text-align: center; border-bottom: 1px solid rgba(30,23,16,0.1); }
    .pain-card:last-child { border-bottom: none; }
    .pain-card::after { display: none; }
    .section-headline { overflow: hidden; width: 100%; }

    /* Concept */
    .concept-section { overflow: hidden; }
    .concept-row1 { flex-direction: column; gap: 32px; padding: 56px 16px 0; }
    /* Headline + kicker centered on mobile */
    .concept-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .concept-head .kicker-left::after { left: 50%; transform: translateX(-50%); }
    .concept-row2 { padding: 56px 16px 56px; }
    .concept-left { gap: 32px; }
    .concept-chart { width: 100%; height: 340px; }
    .chart-word { display: none; }
    /* Photo: plain square image instead of word cloud + blob (per Figma mobile) */
    .concept-right { width: 100%; height: auto; aspect-ratio: 1 / 1; }
    .concept-right-inner { width: 100%; left: 0; top: 0; height: 100%; border-radius: 24px; overflow: hidden; }
    .cloud-word { display: none; }
    .concept-photo { left: 0; top: 0; width: 100%; height: 100%; }
    .concept-photo img { object-fit: cover; object-position: bottom; }
    .concept-quote { padding: 0; }
    .concept-quote p { font-size: 20px; }

    /* Etapy */
    .etapy-section { padding: 64px 0; }
    .etapy-inner   { gap: 32px; }
    .etapy-card {
      flex-direction: column;
      padding: 32px 24px;
      gap: 32px;
      border-radius: 16px;
    }
    .etapy-card-right { justify-content: flex-start; }
    .date-card { max-width: 100%; padding: 16px 0 16px 24px; }
    .program-title { font-size: 28px; }
    .btn-row { flex-direction: column; }
    .btn-row .btn { width: 100%; }
    .programs-grid { flex-direction: column; min-height: unset; }
    .prog-card { padding: 32px 24px; }

    /* Testimonials mobile — keep JS arc carousel, adjust sizes */
    .testimonials-section { overflow: hidden; }
    .testimonials-inner   { padding: 64px 0; gap: 32px; }
    .testimonials-head    { padding: 0 16px; }
    .testimonial-carousel { height: 440px; }
    .tcard {
      width: 82vw;
      max-width: 340px;
      height: auto;
      min-height: 380px;
      padding: 32px 24px;
      top: 10px;
    }
    .tcard[data-pos="-1"] { transform: translateX(calc(-50% - 300px + var(--drag, 0px))) rotate(-4deg) scale(0.92); }
    .tcard[data-pos="1"]  { transform: translateX(calc(-50% + 300px + var(--drag, 0px))) rotate(4deg) scale(0.92); }
    .tcard[data-pos="-2"] { transform: translateX(calc(-50% - 600px + var(--drag, 0px))) rotate(-6deg) scale(0.85); }
    .tcard[data-pos="2"]  { transform: translateX(calc(-50% + 600px + var(--drag, 0px))) rotate(6deg) scale(0.85); }
    .tcard[data-pos="-3"] { transform: translateX(calc(-50% - 900px)) rotate(-8deg) scale(0.8); opacity: 0; pointer-events: none; }
    .tcard[data-pos="3"]  { transform: translateX(calc(-50% + 900px)) rotate(8deg) scale(0.8); opacity: 0; pointer-events: none; }
    .tcard.no-transition { transition: none !important; }
    .testimonial-quote { font-size: 18px; }
    .carousel-nav { display: flex; justify-content: center; gap: 24px; margin-top: -16px; }
    .carousel-btn { background: rgba(30,23,16,0.06); }

    /* Team — horizontal scroll photos on mobile */
    .team-inner { flex-direction: column; gap: 40px; padding-top: 64px; padding-bottom: 64px; }
    .team-photos {
      width: calc(100% + 64px);
      margin-left: -32px;
      height: auto !important;
      display: flex;
      gap: 12px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-left: 32px;
    }
    .team-photos::-webkit-scrollbar { display: none; }
    .team-photo {
      position: relative !important;
      top: auto !important; bottom: auto !important;
      left: auto !important; right: auto !important;
      transform: none !important;
      flex: 0 0 auto;
      border-radius: 16px;
    }
    .team-photo-a, .team-photo-b, .team-photo-c {
      width: 260px !important; height: 380px !important;
    }
    .team-bar-red, .team-bar-green, .team-bar-red2 { display: none !important; }
    .body-lg { max-width: 100%; font-size: 15px; }

    /* FAQ */
    .faq-inner { flex-direction: column; gap: 32px; padding-top: 56px; padding-bottom: 56px; }
    .faq-sub   { font-size: 14px; }

    /* Tagline */
    .tagline-inner { padding: 64px 20px 64px; }

    /* CTA */
    .cta-section { padding: 56px 0; }
    .cta-inner   { padding: 64px 16px; border-radius: 32px; gap: 40px; }
    .cta-sub     { font-size: 14px; }
    .cta-actions .btn { width: 100%; max-width: 320px; }

    /* Footer — brand full width, link columns side by side (per Figma mobile) */
    .footer-inner { padding-top: 56px; padding-bottom: 32px; }
    .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand .btn { align-self: stretch !important; }
    .footer-link { font-size: 14px; }
    .footer-col-title { font-size: 11px; }
    .footer-col { gap: 12px; }
    .footer-links { gap: 10px; }
  }

  /* ==================================================
     NAV SCROLL STATE
  ================================================== */
  .nav-wrap {
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-wrap.nav-hidden { transform: translateY(-100%); }
  .nav-wrap.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(30,23,16,0.08);
  }
  .nav-link {
    transition: color 0.15s ease;
  }
  .nav-link:hover { color: var(--red); }
  .nav-links { position: relative; }
  /* The line: hidden until a link is hovered (or a page is active) */
  .nav-indicator {
    position: absolute;
    bottom: 4px;
    height: 2px;
    width: 24px;
    background: var(--red);
    border-radius: 1px;
    opacity: 0;
    transition: left 0.28s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.18s ease;
    pointer-events: none;
  }
  .nav-links:hover .nav-indicator,
  .nav-links.has-active .nav-indicator { opacity: 1; }

  /* ==================================================
     SCROLL REVEAL
  ================================================== */
  [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  [data-reveal].visible {
    opacity: 1;
    transform: none;
  }
  [data-reveal-delay="1"] { transition-delay: 0.08s; }
  [data-reveal-delay="2"] { transition-delay: 0.16s; }
  [data-reveal-delay="3"] { transition-delay: 0.24s; }
  [data-reveal-delay="4"] { transition-delay: 0.32s; }

  /* Lines inside revealed blocks grow left → right */
  [data-reveal] .red-bar,
  [data-reveal] .kicker-bar-red,
  [data-reveal] .kicker-bar-dark {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.35s;
  }
  [data-reveal].visible .red-bar,
  [data-reveal].visible .kicker-bar-red,
  [data-reveal].visible .kicker-bar-dark {
    transform: scaleX(1);
  }

  /* ==================================================
     BUTTON HOVER — Emil Kowalski principles
     • :active scale gives instant tactile feedback
     • ease-out cubic-bezier(0.23,1,0.32,1): strong, snappy
     • keep under 150ms; no slow shimmer on functional buttons
  ================================================== */
  .btn {
    transition: background 150ms ease,
                color 150ms ease,
                border-color 150ms ease,
                box-shadow 150ms ease,
                transform 120ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .btn:active {
    transform: scale(0.97) !important;
    transition-duration: 70ms;
  }
  /* Letter-roll hover: label letters roll up in a left-to-right wave.
     Spans built in main.js; without JS the button is plain text. */
  .btn { position: relative; }
  .btn-label { display: inline-block; white-space: nowrap; }
  .btn-l { display: inline-block; position: relative; overflow: hidden; vertical-align: top; line-height: 1.35; padding: 1px 0; margin: -1px 0; }
  .btn-l span {
    display: block;
    /* Leave state: fast, simultaneous — no stagger, no artifacts */
    transition: transform 120ms ease;
  }
  .btn-l span + span { position: absolute; left: 0; top: 100%; }
  @media (hover: hover) and (pointer: fine) {
    .btn:hover .btn-l span {
      transform: translateY(-100%);
      /* Enter state: staggered wave */
      transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition-delay: inherit;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .btn-l span { transition: none; }
  }
  .btn-primary:hover { background: var(--red-hover); }
  /* Secondary buttons keep their color — the rolling label is the feedback */
  .btn-outline:hover { border-color: rgba(44,51,47,0.3); }
  .footer-link {
    position: relative;
    align-self: flex-start;
    transition: color 0.15s ease;
  }
  .footer-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  @media (hover: hover) and (pointer: fine) {
    .footer-link:hover { color: var(--red); }
    .footer-link:hover::after { transform: scaleX(1); }
  }
  /* Carousel arrows: icon nudges in the direction of travel */
  .carousel-btn svg { transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1); }
  .carousel-btn:first-child:hover svg { transform: translateX(-2px); }
  .carousel-btn:last-child:hover svg { transform: translateX(2px); }

  /* ==================================================
     PLAY BUTTON
  ================================================== */
  .play-btn { transition: transform 0.2s ease; cursor: pointer; }
  .hero-video:not(.hero-photo-placeholder):hover .play-btn { transform: scale(1.1); }

  /* ==================================================
     PROG CARD HOVER
  ================================================== */
  .prog-card {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
  }
  .prog-card:hover {
    box-shadow: 0 8px 32px rgba(30,23,16,0.1);
    transform: translateY(-3px);
  }
  /* Whole card is interactive — arrow slides when hovering anywhere on it */
  .prog-card:hover .link-btn svg { transform: translateX(5px); }

  /* ==================================================
     LINK BTN ARROW
  ================================================== */
  .link-btn svg { transition: transform 0.2s ease; }
  .link-btn:hover svg { transform: translateX(5px); }

  /* Carousel transitions handled by .tcard[data-pos] rules */

  /* ==================================================
     FAQ ACCORDION
  ================================================== */
  .faq-item {
    flex-direction: column;
    align-items: stretch;
    cursor: pointer;
    gap: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .faq-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 0;
  }
  /* Delicate hover: question tints, icon gets a round backdrop — no movement */
  .faq-icon { border-radius: 50%; transition: background-color 0.18s ease; }
  @media (hover: hover) and (pointer: fine) {
    .faq-item:hover .faq-q { color: var(--red); }
    .faq-section .faq-item:hover .faq-q { color: #fff; }
    .faq-item:hover .faq-icon { background: rgba(30,23,16,0.07); }
    .faq-section .faq-item:hover .faq-icon { background: rgba(255,255,255,0.12); }
    .faq-item-light:hover .faq-icon { background: #e9e2d8; }
  }
  .faq-q { transition: color 0.18s ease; }
  .faq-icon svg {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .faq-item.open .faq-icon svg {
    transform: rotate(180deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.38s ease;
    font-size: 15px;
    color: rgba(247,243,237,0.65);
    line-height: 1.65;
    padding-left: 0;
    padding-right: 32px;
  }
  .faq-item.open .faq-answer {
    max-height: 280px;
    padding-bottom: 26px;
  }

  /* ==================================================
     SUBPAGES — shared components (P-PQ etc.)
  ================================================== */

  /* ---- Page hero (centered, no video) ---- */
  .page-hero .hero-copy { padding-bottom: 104px; }
  .hero-title .em-green { color: var(--green-dark); font-style: italic; }
  .hero-meta {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--muted); line-height: 1.5;
  }
  .hero-meta svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ---- Extra button variants ---- */
  .btn-beige { background: #ebdfc9; color: var(--dark); }
  .btn-beige:hover { background: #e3d4b8; }
  .btn-green { background: var(--green-dark); color: #fff; }
  .btn-green:hover { background: #2f6647; }
  .btn-ghost-light {
    background: transparent;
    border: 1px solid rgba(247,243,237,0.4);
    color: var(--cream);
    padding: 12px 32px; font-size: 14px;
  }
  .btn-ghost-light:hover { border-color: rgba(247,243,237,0.75); }

  /* ---- "Co zbudujesz" — 3 columns with separators ---- */
  .build-section { width: 100%; padding: 56px 0 104px; }
  .build-inner {
    max-width: 1440px; margin: 0 auto; padding: 0 80px;
    display: flex; flex-direction: column; align-items: center; gap: 72px;
  }
  .build-grid { display: flex; width: 100%; }
  .build-col {
    flex: 1; padding: 8px 32px;
    display: flex; flex-direction: column; gap: 12px;
    border-left: 1px solid rgba(30,23,16,0.12);
  }
  .build-col:first-child { border-left: none; padding-left: 0; }
  .build-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px; font-weight: 700;
    line-height: 1.5; letter-spacing: -0.22px; color: var(--brown);
  }
  .build-title em { color: var(--red); font-style: italic; }
  .build-body { font-size: 14px; color: var(--muted); line-height: 1.5; }
  .build-note { display: flex; flex-direction: column; align-items: center; gap: 24px; }
  .build-note-line { width: 56px; height: 1px; background: var(--red); }
  .build-note p {
    font-family: 'Libre Baskerville', serif; font-style: italic;
    font-size: 18px; line-height: 1.7; text-align: center; color: var(--brown);
  }

  /* P-PQ page: green accents instead of red */
  .page-ppq .build-title em { color: var(--green-dark); }
  .page-ppq .build-note-line { background: var(--green-dark); }
  .page-ppq .scard-title { color: var(--green-dark); }
  .page-ppq .kicker-bar-red { background: var(--green-dark); }
  /* All red accent text on P-PQ page → green */
  .page-ppq .h2 em { color: var(--green-dark); }
  .page-ppq .pain-title em { color: var(--green-dark); }
  .page-ppq .text-red { color: var(--green-dark); }
  .page-ppq .tagline-text em { color: var(--green-dark); }
  .page-ppq .faq-item:hover .faq-q { color: var(--green-dark); }

  /* ---- Sabotażyści arc carousel ---- */
  .sabot-section { width: 100%; padding: 56px 0 104px; overflow: hidden; }
  .sabot-inner {
    max-width: 1440px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 56px;
  }
  .sabot-carousel { position: relative; height: 460px; width: 100%; touch-action: pan-y; }
  .scard {
    position: absolute; left: 50%; top: 0;
    width: 318px; height: 363px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    display: flex; flex-direction: column; gap: 24px;
    align-items: center; justify-content: flex-end;
    text-align: center;
    cursor: grab; user-select: none;
    transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.4s ease;
    will-change: transform;
  }
  .sabot-carousel.dragging .scard {
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;
    cursor: grabbing;
  }
  .scard.no-transition { transition: none !important; }
  .scard:active { cursor: grabbing; }
  .scard-img {
    flex: 1; min-height: 0; width: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    border-radius: 16px;
  }
  .scard-img img { max-height: 186px; max-width: 100%; object-fit: contain; pointer-events: none; }
  .scard-text { display: flex; flex-direction: column; gap: 16px; width: 100%; }
  .scard-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px; font-weight: 700; line-height: 1.5; color: var(--red);
  }
  .scard-title em { font-style: italic; }
  .scard-body { font-size: 14px; color: var(--dark); line-height: 1.5; letter-spacing: 0.14px; }
  /* Smile-arc fan: edges rise and tilt outward (per design) */
  .scard[data-pos="0"]  { transform: translate(calc(-50% + var(--drag, 0px)), 79px); z-index: 5; }
  .scard[data-pos="-1"] { transform: translate(calc(-50% - 347px + var(--drag, 0px)), 46px) rotate(4deg);  z-index: 4; }
  .scard[data-pos="1"]  { transform: translate(calc(-50% + 347px + var(--drag, 0px)), 46px) rotate(-4deg); z-index: 4; }
  .scard[data-pos="-2"] { transform: translate(calc(-50% - 688px + var(--drag, 0px)), 5px)  rotate(6deg);  z-index: 3; }
  .scard[data-pos="2"]  { transform: translate(calc(-50% + 688px + var(--drag, 0px)), 5px)  rotate(-6deg); z-index: 3; }
  /* ±3 = off-stage buffer slots so loop cards glide in from the edges */
  .scard[data-pos="-3"] { transform: translate(calc(-50% - 1029px + var(--drag, 0px)), -32px) rotate(8deg);  z-index: 2; opacity: 0; pointer-events: none; }
  .scard[data-pos="3"]  { transform: translate(calc(-50% + 1029px + var(--drag, 0px)), -32px) rotate(-8deg); z-index: 2; opacity: 0; pointer-events: none; }

  /* ---- Program structure (dark, 7-week timeline) ---- */
  .program-section { background: var(--dark); position: relative; width: 100%; overflow: hidden; }
  .program-bg { position: absolute; inset: 0; pointer-events: none; }
  .program-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
  .program-inner {
    position: relative; z-index: 1;
    max-width: 1440px; margin: 0 auto;
    padding: 104px 80px;
    display: flex; gap: 72px; align-items: flex-start;
  }
  .program-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 48px; }
  .program-head { display: flex; flex-direction: column; gap: 12px; }
  .program-head .h2 { color: var(--cream); }
  .program-intro { font-size: 14px; color: #a89e93; line-height: 1.6; margin-top: 12px; }
  .feature-list { display: flex; flex-direction: column; }
  .feature-item {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .feature-item:last-child { border-bottom: none; }
  .feature-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-title { font-size: 16px; font-weight: 500; color: var(--cream); line-height: 1.4; }
  .feature-body { font-size: 14px; color: #a89e93; line-height: 1.5; margin-top: 8px; }
  .weeks { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
  .week-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex; gap: 32px; align-items: center;
    min-height: 120px;
  }
  .week-num {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    width: 56px; flex-shrink: 0;
  }
  .week-num .n { font-family: 'Libre Baskerville', serif; font-size: 32px; color: #8aba9e; line-height: 1.2; }
  .week-num .lbl { font-family: 'Libre Baskerville', serif; font-size: 13px; color: #8aba9e; }
  .week-title { font-family: 'Libre Baskerville', serif; font-size: 16px; font-weight: 700; color: var(--cream); line-height: 1.4; }
  .week-body { font-size: 13px; color: #a89e93; line-height: 1.5; margin-top: 8px; }

  /* ---- Pricing ---- */
  .pricing-section { background: var(--cream); position: relative; width: 100%; overflow: hidden; padding: 72px 0; }
  .pricing-bg { position: absolute; inset: 0; pointer-events: none; }
  .pricing-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
  .pricing-bg {
    -webkit-mask-image: linear-gradient(to bottom, white 0%, white 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, white 0%, white 60%, transparent 100%);
  }
  .pricing-inner {
    position: relative; z-index: 1;
    max-width: 1440px; margin: 0 auto; padding: 0 80px;
    display: flex; flex-direction: column; align-items: center; gap: 40px;
  }
  .pricing-card {
    background: #fff; border-radius: 24px; padding: 40px;
    width: 600px; max-width: 100%;
    display: flex; flex-direction: column; gap: 24px;
    box-shadow: 0 24px 64px rgba(30,23,16,0.08);
  }
  .pricing-card-head { display: flex; flex-direction: column; gap: 16px; }
  .pricing-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 32px; line-height: 1.3; letter-spacing: -0.64px;
    color: var(--green-dark);
  }
  .price-row { display: flex; align-items: baseline; gap: 12px; }
  .price {
    font-family: 'Libre Baskerville', serif;
    font-size: 56px; font-weight: 700; letter-spacing: -2px; color: var(--dark); line-height: 1;
  }
  .price-unit { font-size: 14px; color: var(--muted); }
  .check-list { display: flex; flex-direction: column; }
  .check-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(30,23,16,0.08);
    font-size: 14px; color: var(--brown); line-height: 1.5;
  }
  .check-item:last-child { border-bottom: none; }
  .check-icon {
    width: 16px; height: 4px; border-radius: 1px;
    background: var(--green);
    flex-shrink: 0;
  }
  .check-icon svg { display: none; }
  .pricing-date-label {
    padding-left: 0;
  }
  .pricing-btn-row { display: flex; gap: 16px; }
  .pricing-btn-row .btn { flex: 1; }
  .info-grid { display: flex; gap: 24px; width: 100%; align-items: stretch; }
  .info-card {
    flex: 1; background: #fff; border-radius: 24px; padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .info-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--red);
  }
  .info-body { font-size: 14px; color: var(--brown); line-height: 1.5; }
  .info-label { font-size: 14px; font-weight: 600; color: var(--dark); }
  .info-list { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
  .info-list li { font-size: 14px; color: var(--brown); line-height: 1.5; }
  .info-list b { font-weight: 600; }
  .info-card .btn { margin-top: auto; align-self: flex-start; }
  .info-link { color: var(--red); font-weight: 500; }

  /* ---- "Co dalej" CTA (dark green card) ---- */
  .next-section { width: 100%; padding: 80px 0; }
  .next-outer { max-width: 1440px; margin: 0 auto; padding: 0 80px; }
  .next-inner {
    background: #414936;
    border-radius: 32px;
    padding: 80px;
    display: flex; gap: 64px; align-items: center;
    position: relative; overflow: hidden;
  }
  .next-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.16; pointer-events: none;
  }
  .next-left {
    flex: 1.15; min-width: 0;
    display: flex; flex-direction: column; gap: 20px;
    position: relative; z-index: 1;
  }
  .next-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 44px; font-weight: 400;
    color: var(--cream); line-height: 1.25; letter-spacing: -1.32px;
  }
  .next-title em { font-style: italic; }
  .next-body { font-size: 15px; color: rgba(247,243,237,0.8); line-height: 1.6; max-width: 480px; }
  .next-action { display: flex; align-items: center; gap: 24px; margin-top: 16px; }
  .next-arrow {
    flex: 1; max-width: 280px; height: 18px; position: relative;
    opacity: 0; transform: translateX(-20px);
    transition: opacity 0.6s ease 0.3s, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  }
  .visible .next-arrow, [data-reveal].visible .next-arrow {
    opacity: 1; transform: translateX(0);
  }
  .next-arrow::before {
    content: ''; position: absolute;
    left: 0; right: 4px; top: 50%;
    height: 1px; background: var(--cream);
  }
  .next-arrow::after {
    content: ''; position: absolute;
    right: 0; top: 50%;
    width: 9px; height: 9px;
    border-top: 1px solid var(--cream); border-right: 1px solid var(--cream);
    transform: translateY(-50%) rotate(45deg); margin-top: 0;
  }
  .next-cards {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; gap: 24px;
    position: relative; z-index: 1;
  }
  .next-card {
    background: rgba(30,23,16,0.25);
    border: 1px solid rgba(247,243,237,0.12);
    border-radius: 16px;
    padding: 32px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .next-card h3 { font-family: 'Libre Baskerville', serif; font-size: 20px; font-weight: 400; color: var(--cream); }
  .next-card p { font-size: 13px; color: rgba(247,243,237,0.7); line-height: 1.5; }
  .next-card .btn { align-self: flex-start; margin-top: 8px; }

  /* ---- FAQ light variant (white accordion cards, centered) ---- */
  .faq-light-section { width: 100%; padding: 120px 0; background: #faf8f4; }
  .faq-light-inner {
    max-width: 1440px; margin: 0 auto; padding: 0 80px;
    display: flex; flex-direction: column; align-items: center; gap: 56px;
  }
  .faq-light-list { display: flex; flex-direction: column; gap: 0; width: 100%; max-width: 760px; }
  .faq-item-light {
    background: none;
    border: none !important;
    border-bottom: 1px solid rgba(30,23,16,0.1) !important;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  .faq-item-light .faq-q { color: var(--dark); font-size: 16px; }
  .faq-item-light .faq-answer { color: var(--muted); }
  .faq-item-light .faq-icon {
    background: none; border-radius: 50%;
  }
  .faq-item-light .faq-icon svg { width: 16px; height: 16px; }

  /* ---- Subpages responsive ---- */
  @media (max-width: 1024px) {
    .build-inner, .sabot-inner, .pricing-inner, .next-outer, .faq-light-inner { padding-left: 40px; padding-right: 40px; }
    .program-inner { padding: 80px 40px; flex-direction: column; gap: 56px; }
    .next-title { font-size: 36px; }
  }
  @media (max-width: 768px) {
    .build-inner, .pricing-inner, .faq-light-inner { padding-left: 20px; padding-right: 20px; }
    .next-outer { padding-left: 16px; padding-right: 16px; }
    .build-section, .pricing-section, .faq-light-section { padding-top: 40px; padding-bottom: 64px; }
    .sabot-section { padding-top: 40px; padding-bottom: 80px; }
    .sabot-inner { padding-left: 0; padding-right: 0; }
    .sabot-inner > .section-headline { padding: 0 16px !important; }
    .build-grid { flex-direction: column; }
    .build-col { border-left: none; border-top: 1px solid rgba(30,23,16,0.12); padding: 20px 0; text-align: center; }
    .build-col:first-child { border-top: none; }
    /* Saboteur carousel — keep JS arc carousel on mobile */
    .sabot-carousel { height: 420px; }
    .scard {
      width: 78vw; max-width: 300px;
      height: auto; min-height: 320px;
      padding: 28px 20px;
    }
    .scard[data-pos="0"]  { transform: translate(calc(-50% + var(--drag, 0px)), 40px); }
    .scard[data-pos="-1"] { transform: translate(calc(-50% - 300px + var(--drag, 0px)), 10px) rotate(4deg) scale(0.92); }
    .scard[data-pos="1"]  { transform: translate(calc(-50% + 300px + var(--drag, 0px)), 10px) rotate(-4deg) scale(0.92); }
    .scard[data-pos="-2"] { transform: translate(calc(-50% - 600px + var(--drag, 0px)), 0px) rotate(6deg) scale(0.85); opacity: 0; }
    .scard[data-pos="2"]  { transform: translate(calc(-50% + 600px + var(--drag, 0px)), 0px) rotate(-6deg) scale(0.85); opacity: 0; }
    .scard[data-pos="-3"] { transform: translate(calc(-50% - 900px + var(--drag, 0px)), -20px) rotate(8deg); opacity: 0; }
    .scard[data-pos="3"]  { transform: translate(calc(-50% + 900px + var(--drag, 0px)), -20px) rotate(-8deg); opacity: 0; }
    .scard.no-transition { transition: none !important; }
    .scard-text { text-align: left; }
    .program-inner { padding: 64px 20px; }
    .week-card { padding: 20px; gap: 20px; }
    .pricing-card { padding: 32px 24px; }
    .pricing-btn-row { flex-direction: column; }
    .price { font-size: 44px; }
    .info-grid { flex-direction: column; }
    .next-inner { flex-direction: column; padding: 48px 24px; gap: 40px; border-radius: 24px; }
    .next-title { font-size: 30px; }
    .next-arrow { display: none; }
  }

  /* ====================================================
     ZESPÓŁ BEZ DRAMY page
  ==================================================== */

  /* ---- Drama / iceberg stage ---- */
  .drama-section {
    background: #fff;
    overflow: hidden;
    overflow-x: clip;
    max-width: 100vw;
    height: 1706px;
  }
  .drama-stage {
    position: relative;
    width: 1440px;
    height: 1706px;
    margin: 0 auto;
  }
  .drama-head1 {
    position: absolute;
    left: 120px;
    right: 864px;
    top: 302px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .drama-head1 .h2 {
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -1.08px;
  }
  .drama-head1 .kicker::after,
  .drama-head2 .kicker::after {
    left: 0;
    transform: none;
  }
  .drama-iceberg1 {
    position: absolute;
    left: calc(50% + 183.5px);
    top: 242px;
    transform: translateX(-50%);
    width: 583px;
    height: 379px;
  }
  .drama-line {
    position: absolute;
    top: 605px;
    left: 23px;
    right: 5px;
    width: calc(100% - 28px);
    height: 16px;
  }
  .drama-iceberg2 {
    position: absolute;
    left: calc(50% + 183.5px);
    top: 616px;
    transform: translateX(-50%);
    width: 689px;
    height: 797px;
  }
  .drama-head2 {
    position: absolute;
    left: 120px;
    top: 654px;
    width: 456px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .drama-head2-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -1.08px;
    color: var(--dark);
    max-width: 432px;
  }
  .drama-word {
    position: absolute;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.22px;
    color: var(--brown);
    padding: 6px 18px;
    white-space: nowrap;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
  }
  .drama-word-c {
    white-space: normal;
    text-align: center;
  }
  .drama-note-section {
    background: #fff;
    padding: 0 24px 32px;
    margin-top: -200px;
    position: relative;
    z-index: 10;
  }
  .drama-note {
    max-width: 1122px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .drama-note-line {
    width: 96px;
    height: 1px;
    background: var(--red);
  }
  .drama-note p {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: -0.22px;
    color: var(--brown);
    text-align: center;
  }
  /* Scale the fixed stage on narrower screens */
  @media (max-width: 1439px) {
    .drama-section { height: calc(100vw * 1.20); }
    .drama-stage {
      transform: scale(calc(100vw / 1440));
      transform-origin: top left;
      margin: 0;
    }
  }

  @media (max-width: 1024px) {
    /* Tablet + mobile: vertical layout —
       head1 → peak+words → waterline → underwater+quotes → head2 */
    .drama-section { overflow: hidden; height: auto !important; padding: 24px 0 !important; }
    .drama-stage {
      width: 100% !important;
      height: 960px !important;
      transform: none !important;
    }
    /* ① Head1 */
    .drama-head1 {
      left: 16px !important; right: 16px !important;
      top: 40px !important;
      width: auto !important;
      text-align: center !important;
      align-items: center !important;
    }
    .drama-head1 .kicker::after { left: 50%; transform: translateX(-50%); }
    .drama-head1 .h2 { font-size: 26px; line-height: 1.3; letter-spacing: -0.8px; }
    /* ② Peak + underwater: SAME scale factor (0.429×) so outlines match */
    .drama-iceberg1 {
      left: 50% !important;
      top: 165px !important;
      transform: translateX(-50%) !important;
      width: 300px !important; height: 195px !important;
      z-index: 2;
    }
    .drama-line {
      top: 345px !important;
      left: 0 !important; right: 0 !important;
      width: 100% !important; height: 20px !important;
      z-index: 3;
    }
    .drama-iceberg2 {
      left: 50% !important;
      top: 355px !important;
      transform: translateX(-50%) !important;
      width: 355px !important; height: 410px !important;
      z-index: 1;
    }
    /* ⑤ Word pills — spread around the peak */
    .drama-word {
      font-size: 15px !important;
      padding: 5px 12px !important;
      z-index: 4;
    }
    .drama-word[data-pair="neg-inicjatywa"] { left: 6px !important; top: 160px !important; }
    .drama-word[data-pair="neg-zaufanie"] { right: auto !important; left: calc(100% - 120px) !important; top: 148px !important; }
    .drama-word[data-pair="neg-komunikacja"] { left: calc(50% - 85px) !important; top: 195px !important; }
    /* Hide excess words */
    .drama-word[data-pair="neg-zaangazowanie"],
    .drama-word[data-pair="neg-odpowiedzialnosc"],
    .drama-word[data-pair="neg-kreatywnosc"] { display: none !important; }
    .drama-word-c[data-neg="neg-zaangazowanie"],
    .drama-word-c[data-neg="neg-odpowiedzialnosc"],
    .drama-word-c[data-neg="neg-kreatywnosc"] { display: none !important; }
    /* ⑥ Quote pills — around the underwater iceberg */
    .drama-word-c[data-neg="neg-inicjatywa"] { left: 16px !important; top: 416px !important; width: min(240px, calc(100% - 32px)) !important; z-index: 4; }
    .drama-word-c[data-neg="neg-komunikacja"] { right: auto !important; left: calc(100% - 236px) !important; top: 516px !important; width: min(220px, calc(100% - 32px)) !important; z-index: 4; }
    .drama-word-c[data-neg="neg-zaufanie"] { left: 16px !important; top: 606px !important; width: calc(100% - 32px) !important; z-index: 4; }
    /* ⑦ Head2 — tight below quotes */
    .drama-head2 {
      left: 16px !important;
      top: 810px !important;
      width: calc(100% - 32px) !important;
      text-align: center !important;
      align-items: center !important;
    }
    .drama-head2 .kicker::after { left: 50%; transform: translateX(-50%); }
    .drama-head2-title { font-size: 26px !important; line-height: 1.3; letter-spacing: -0.8px; }
    .drama-note-section { margin-top: 0; padding: 24px 16px 32px; }
    .drama-note p { font-size: 18px; }
  }

  /* ---- Drama scene: scroll-driven animation (no sticky pin) ----
     JS adds .drama-anim; animation driven by section scroll position. */
  .drama-anim .drama-stage {
    transform-origin: top left;
  }
  .drama-anim .drama-word { will-change: transform, opacity, filter; }
  .drama-anim .drama-word-c { display: none; }
  .drama-anim .drama-head2 { opacity: 0; }

  /* ── V1/V2 dual-span structure ── */
  .dw-active { display: flex !important; align-items: center; justify-content: center; }
  .dw-pos { text-align: center; white-space: nowrap; }
  .dw-neg { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); padding: 8px 24px; box-sizing: border-box; text-align: center; white-space: normal; }
  @media (max-width: 768px) {
    .dw-neg { padding: 5px 12px; }
    .drama-word {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border: 1px solid rgba(0, 0, 0, 0.1) !important;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
    }
  }
  .dw-bonus { opacity: 0; }

  /* ── V2 typewriter cursor ── */
  .dw-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--brown);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: dw-blink 0.7s step-end infinite;
  }
  @keyframes dw-blink {
    50% { opacity: 0; }
  }

  /* ---- Źródło (big serif statement) ---- */
  .source-section {
    background: #fff;
    padding: 80px 0 140px;
  }
  .source-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .source-text p {
    font-family: 'Libre Baskerville', serif;
    font-size: 46px;
    line-height: 1.35;
    letter-spacing: -1.38px;
    color: var(--dark);
    margin-bottom: 28px;
  }
  .source-text p:last-child { margin-bottom: 0; }
  .source-text em {
    font-style: italic;
    color: var(--red);
  }

  /* ---- Dwa fundamenty ---- */
  .fund-section {
    background: var(--cream);
    padding: 104px 0;
  }
  .fund-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }
  .fund-inner .section-headline { margin-bottom: 0; }
  .fund-grid {
    width: 880px;
    max-width: 100%;
    display: flex;
    gap: 48px;
  }
  .fund-card {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    min-height: 416px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .fund-num {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 104px;
    line-height: 1;
    letter-spacing: -2.08px;
    color: #f9ebed;
  }
  .fund-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.56px;
    color: var(--red);
    margin-bottom: 12px;
  }
  .fund-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--brown);
  }

  /* ---- Program / spotkania (dark) ---- */
  .meet-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding: 104px 0;
  }
  .meet-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .meet-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: overlay;
  }
  .meet-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }
  .meet-list {
    width: 880px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .meet-card {
    background: rgba(245,237,224,0.05);
    border: 1px solid rgba(245,237,224,0.15);
    border-radius: 16px;
    padding: 25px 17px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .meet-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 96px;
    gap: 4px;
  }
  .meet-num .n {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    line-height: 1;
    color: var(--red);
  }
  .meet-num .lbl {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    color: var(--cream);
  }
  .meet-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.22px;
    color: var(--cream);
    margin-bottom: 6px;
  }
  .meet-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-warm);
  }
  .meet-note {
    width: 880px;
    max-width: 100%;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 24px 16px 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-warm);
  }

  /* ---- ZBD pricing variants ---- */
  .pricing-title-red {
    color: var(--red);
    font-weight: 700;
  }
  .dash-list {
    display: flex;
    flex-direction: column;
  }
  .dash-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark);
  }
  .dash-item:last-child { border-bottom: none; }
  .dash-mark {
    width: 12px;
    height: 2px;
    border-radius: 1px;
    background: var(--red-hover);
    flex-shrink: 0;
  }
  .zbd-info .info-title {
    color: var(--brown);
    font-size: 22px;
  }

  /* ---- Cream testimonial cards (white section) ---- */
  .tcard-cream { background: var(--cream); }

  /* ---- ZBD responsive ---- */
  @media (max-width: 1024px) {
    .fund-inner, .meet-inner { padding: 0 40px; }
    .source-text p { font-size: 36px; letter-spacing: -1px; }
  }
  @media (max-width: 768px) {
    .source-section { padding: 56px 0 96px; }
    .source-inner { padding: 0 20px; }
    .source-text p { font-size: 28px; letter-spacing: -0.6px; margin-bottom: 20px; }
    .fund-section, .meet-section { padding: 64px 0; }
    .fund-inner, .meet-inner { padding: 0 20px; gap: 40px; }
    .fund-grid { flex-direction: column; gap: 24px; }
    .fund-card { min-height: 0; gap: 32px; padding: 32px 24px; }
    .fund-num { font-size: 72px; }
    .meet-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px 20px; }
    .meet-num { flex-direction: row; width: auto; align-items: baseline; gap: 8px; }
  }


  /* ====================================================
     KALENDARIUM page
  ==================================================== */
  .kal-hero .hero-inner { padding-bottom: 0; }
  .event-section {
    background: #fff;
    padding: 0 80px 40px;
  }
  .event-list {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .event-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
    border-radius: 16px 16px 0 0;
    cursor: pointer;
    transition: background 0.22s ease;
  }
  .event-card-last, .event-card:last-child { border-bottom: none; }
  /* Subtle cream hover on upcoming events only */
  @media (hover: hover) and (pointer: fine) {
    .event-card:not(.event-past):hover { background: var(--cream); border-radius: 16px; }
  }
  /* Past events: no pointer, muted look */
  .event-past { cursor: default; }
  .event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 56px;
  }
  .event-mon {
    white-space: nowrap;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.44px;
    color: var(--red);
  }
  .event-sep {
    width: 32px;
    height: 1px;
    background: var(--border);
    opacity: 0.5;
  }
  .event-day {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.8px;
    color: var(--red);
  }
  .event-img {
    position: relative;
    width: 360px;
    height: 248px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
  }
  .event-img > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .event-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(90,26,31,0.6);
  }
  .event-badge {
    position: relative;
    background: rgba(255,255,255,0.22);
    border-radius: 12px;
    padding: 8px 12px;
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    color: var(--cream);
    text-align: center;
  }
  .event-img-title {
    position: relative;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.22px;
    color: var(--cream);
    text-align: center;
    max-width: 312px;
  }
  .event-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .event-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .event-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: var(--brown);
  }
  .event-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 682px;
  }
  .event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
  }
  .event-meta-row { display: flex; gap: 9px; }
  .event-meta-label { color: var(--brown); }
  .event-meta-value { color: var(--muted); }
  .past-head {
    padding: 104px 0 24px;
    text-align: center;
  }
  .event-past .event-mon,
  .event-past .event-day { color: var(--muted); }
  .event-past .event-img-overlay { background: rgba(109,105,100,0.6); }

  @media (max-width: 1024px) {
    .event-section { padding: 0 24px 40px; }
    .event-card { flex-wrap: wrap; padding: 32px 16px; }
    .event-desc { max-width: 100%; }
  }
  @media (max-width: 768px) {
    .event-card { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 16px; }
    .event-card:last-child { margin-bottom: 0; }
    .event-date { flex-direction: row; width: auto; align-items: baseline; gap: 6px; }
    .event-sep { display: none; }
    .event-day { font-size: 28px; order: -1; }
    .event-mon { font-size: 16px; text-transform: lowercase; }
    .event-img { width: 100%; }
    .past-head { padding: 64px 0 16px; }
  }

  /* ==================================================
     O NAS page
  ================================================== */
  .onas-hero .hero-texture { height: 912px; }
  .onas-hero .team-inner { position: relative; z-index: 1; }

  /* ── 3-photo collage (o-nas hero) ── */
  .collage-photos {
    width: 612px; height: 612px;
    flex-shrink: 0;
    position: relative;
  }
  .collage-card {
    position: absolute;
    width: 253px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.4s ease;
  }
  .collage-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  }
  .collage-card img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .collage-card-1 { height: 351px; left: 0; top: 50%; transform: translateY(-50%); }
  .collage-card-2 { height: 351px; right: 0; top: 0; }
  .collage-card-3 { height: 351px; left: 50%; transform: translateX(-50%); bottom: 48px; z-index: 2; }
  .collage-bar {
    position: absolute;
    height: 12px; width: 254px;
    border-radius: 24px; z-index: 1;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .collage-bar-red   { background: var(--red); }
  .collage-bar-green { background: var(--green-dark); }
  .collage-bar-1 { left: 179px; bottom: 28px; }
  .collage-bar-2 { left: 0;     bottom: 111px; }
  .collage-bar-3 { left: 358px; bottom: 241px; }
  [data-reveal].visible .collage-bar-1 { transform: scaleX(1); transition-delay: 0.2s; }
  [data-reveal].visible .collage-bar-2 { transform: scaleX(1); transition-delay: 0.4s; }
  [data-reveal].visible .collage-bar-3 { transform: scaleX(1); transition-delay: 0.6s; }
  [data-reveal].visible .collage-bar-4 { transform: scaleX(1); transition-delay: 0.65s; }
  [data-reveal].visible .collage-bar-5 { transform: scaleX(1); transition-delay: 0.8s; }

  /* ── 5-photo collage variant (o-nas-v2) ── */
  .collage-5 { width: 650px; height: 630px; }
  .collage-5 .collage-card { width: 170px; }
  .collage-5 .collage-card-1 { height: 240px; left: 240px; top: 20px; right: auto; bottom: auto; transform: none; z-index: 3; }
  .collage-5 .collage-card-2 { height: 240px; left: 421px; top: 151px; right: auto; bottom: auto; transform: none; z-index: 2; }
  .collage-5 .collage-card-3 { height: 240px; left: 352px; top: 364px; right: auto; bottom: auto; transform: none; z-index: 1; }
  .collage-5 .collage-card-4 { height: 240px; left: 128px; top: 364px; right: auto; bottom: auto; transform: none; z-index: 1; }
  .collage-5 .collage-card-5 { height: 240px; left: 59px; top: 151px; right: auto; bottom: auto; transform: none; z-index: 2; }
  .collage-5 .collage-bar { display: none; }

  /* Floating animation for collage photos */
  @keyframes collageFloat1 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(4px, -7px); } }
  @keyframes collageFloat2 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(-5px, -6px); } }
  @keyframes collageFloat3 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(3px, -8px); } }
  @keyframes collageFloat4 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(-4px, -5px); } }
  @keyframes collageFloat5 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(5px, -6px); } }
  .collage-5 .collage-card {
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .collage-5 .collage-card-1 { animation: collageFloat1 7s ease-in-out infinite; }
  .collage-5 .collage-card-2 { animation: collageFloat2 8s ease-in-out infinite 1s; }
  .collage-5 .collage-card-3 { animation: collageFloat3 9s ease-in-out infinite 2s; }
  .collage-5 .collage-card-4 { animation: collageFloat4 7.5s ease-in-out infinite 2.5s; }
  .collage-5 .collage-card-5 { animation: collageFloat5 8.5s ease-in-out infinite 1.5s; }
  @media (hover: hover) {
    .collage-5 .collage-card:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 40px rgba(0,0,0,0.14);
      z-index: 10;
    }
  }

  .onas-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: -1.68px;
    color: var(--brown);
  }
  .body-xl { font-size: 18px; color: var(--muted); line-height: 1.5; max-width: 600px; }


  .headline-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 600px;
  }

  /* W co wierzymy */
  .belief-section { padding: 160px 80px 104px; }
  .belief-text p { text-align: center; }
  .belief-credit {
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    text-align: center;
    margin-top: 16px;
  }

  /* Kto za tym stoi */
  .people-section { width: 100%; overflow: hidden; }
  .people-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 104px 80px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  .people-inner .section-headline { margin-bottom: 0; }
  .person-row {
    display: flex;
    gap: 56px;
    align-items: center;
    width: 100%;
  }
  .person-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
  .person-name {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -1.38px;
    color: var(--brown);
  }
  .person-img {
    flex: 1;
    min-width: 0;
    height: 794px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
  }
  .person-img img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }

  /* Czym się zajmujemy */
  .offer-section {
    background: #fff;
    padding: 56px 0 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }
  .offer-section .section-headline { margin-bottom: 0; }
  .offer-wrap {
    width: 100%;
    max-width: 1440px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .offer-main {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 56px;
    display: flex;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .offer-main-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
    overflow: hidden;
  }
  .offer-main-texture img { width: 100%; height: 100%; object-fit: cover; }
  .offer-main-content {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .offer-main-head { display: flex; flex-direction: column; gap: 32px; }
  .offer-main-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.8px;
    color: var(--red-hover);
  }
  .offer-main-line { height: 4px; width: 100%; background: var(--red-hover); border-radius: 1px; }
  .offer-main-body p {
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 20px;
  }
  .offer-main-body p:last-child { margin-bottom: 0; }
  .offer-bullets { display: flex; flex-direction: column; gap: 16px; }
  .offer-bullet { display: flex; gap: 8px; align-items: center; }
  .offer-bullet-mark { flex-shrink: 0; width: 16px; height: 4px; background: var(--red-hover); border-radius: 1px; }
  .offer-bullet p { font-size: 14px; letter-spacing: 0.14px; line-height: 1.5; color: var(--dark); }
  .offer-main-actions { display: flex; gap: 16px; width: 100%; }
  .offer-main-side {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
    align-items: flex-start;
  }
  .offer-meet {
    width: 382px;
    background: transparent;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .offer-meet-bar {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 185px;
    background: var(--red-hover);
    border-radius: 1px;
  }
  .offer-meet-head { display: flex; flex-direction: column; gap: 12px; }
  .offer-meet-date {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: var(--dark);
  }
  .offer-meet-time { font-size: 14px; letter-spacing: 0.14px; line-height: 1.5; color: var(--muted-warm); }
  .offer-meet-note { border-top: 1px solid rgba(30,23,16,0.25); padding-top: 12px; }
  .offer-meet-note p {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: -0.14px;
    line-height: 1.5;
    color: var(--dark);
  }
  .offer-grid { display: flex; gap: 32px; align-items: stretch; }
  .offer-card {
    flex: 1;
    min-width: 0;
    min-height: 328px;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
  }
  .offer-card-green { background: #eff1ee; }
  .offer-card-green .kicker-bar-red { background: var(--green-dark); }
  .offer-card-white { background: #fff; }
  .offer-card-top { display: flex; flex-direction: column; gap: 16px; }
  .offer-card-kicker { display: flex; gap: 16px; align-items: center; width: 100%; }
  .offer-card-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.44px;
    color: var(--dark);
  }
  .offer-card-body p {
    font-size: 14px;
    letter-spacing: 0.14px;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 20px;
  }
  .offer-card-body p:last-child { margin-bottom: 0; }

  /* Czego od nas nie usłyszysz */
  .honest-section { width: 100%; overflow: hidden; }
  .honest-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 104px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .honest-grid {
    display: flex;
    gap: 22px;
    align-items: center;
    width: 100%;
    padding: 30px 0;
  }
  .honest-card {
    flex: 1;
    min-width: 0;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .honest-sep {
    flex-shrink: 0;
    width: 0;
    height: 208px;
    border-left: 1px dashed var(--border);
  }
  .honest-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.22px;
    color: var(--brown);
  }
  .honest-title em { color: var(--red); font-style: italic; }
  .honest-body { font-size: 14px; letter-spacing: 0.14px; line-height: 1.5; color: var(--brown); }

  @media (max-width: 1024px) {
    .onas-hero .team-inner { flex-direction: column; gap: 40px; align-items: center; }
    .collage-photos { width: 440px; height: 440px; }
    .collage-card { width: 180px; border-radius: 16px; }
    .collage-card-1 { height: 250px; }
    .collage-card-2 { height: 250px; }
    .collage-card-3 { height: 250px; bottom: 34px; }
    .collage-bar { width: 180px; }
    .onas-title { font-size: 44px; letter-spacing: -1px; }
    .belief-section { padding: 96px 24px 64px; }
    .people-inner { padding: 64px 24px; gap: 56px; }
    .person-row { flex-direction: column; gap: 32px; }
    .person-row .person-img { order: 1; width: 100%; height: 480px; flex: none; }
    .person-row .person-content { order: 2; }
    .person-name { font-size: 36px; letter-spacing: -1px; }
    .offer-wrap { padding: 0 24px; }
    .offer-main { flex-direction: column; padding: 32px 24px; gap: 32px; align-items: stretch; }
    .offer-main-side { justify-content: flex-start; }
    .offer-meet { width: 100%; }
    .offer-grid { flex-direction: column; }
    .honest-inner { padding: 64px 24px; }
    .honest-grid { flex-direction: column; gap: 8px; padding: 16px 0; }
    .honest-sep { width: 100%; height: 0; border-left: none; border-top: 1px dashed var(--border); }
    .honest-title { min-height: 0; }
  }
  @media (max-width: 768px) {
    .onas-hero { overflow: visible; }
    .onas-hero .team-inner { padding: 64px 20px; }
    .onas-hero .team-content { text-align: center; align-items: center; }
    .onas-hero .team-content .self-start { align-self: center; }
    .onas-hero .kicker-left::after { left: 50%; transform: translateX(-50%); }
    .collage-photos {
      display: flex; width: 100%; height: 320px;
      border-radius: 20px; overflow: hidden;
    }
    .collage-card {
      position: relative !important; top: auto !important; left: auto !important;
      right: auto !important; bottom: auto !important; transform: none !important;
      width: 100% !important; height: 100% !important;
      border-radius: 0 !important;
    }
    .collage-card-2, .collage-card-3 { display: none; }
    .collage-card-1 img { object-position: center 20%; }
    .collage-bar { display: none; }
    .onas-title { font-size: 36px; letter-spacing: -0.8px; }
    .body-xl { font-size: 16px; }
    .person-row .person-img { height: 360px; }
    .people-inner { padding: 64px 20px 32px; gap: 48px; }
    .offer-section { padding: 40px 0 64px; }
    .offer-section > .section-headline { padding: 0 16px; }
    .offer-main-title { font-size: 30px; }
    .offer-main-actions { flex-direction: column; }
    .offer-card { padding: 32px 24px; }
  }

  /* ====================================================
     KONTAKT page
  ==================================================== */
  .kontakt-hero .hero-inner { padding-bottom: 0; }
  .kontakt-section {
    background: #fff;
    padding: 0 80px 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
  }
  .kontakt-block {
    width: 880px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    scroll-margin-top: 96px;
  }
  .kontakt-block-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .kontakt-block-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: -0.56px;
    color: var(--red);
  }
  .kontakt-block-sub {
    font-size: 14px;
    line-height: 1.5;
    color: var(--brown);
  }
  .kontakt-embed {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    min-height: 465px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .kontakt-embed-placeholder {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    letter-spacing: -0.56px;
    color: var(--red);
  }
  @media (max-width: 768px) {
    .kontakt-section { padding: 0 24px 64px; gap: 56px; }
    .kontakt-embed { min-height: 360px; }
  }

  /* ==================================================
     404 PAGE
  ================================================== */
  .error-section {
    position: relative;
    min-height: calc(100vh - 72px - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .error-texture {
    position: absolute; inset: 0;
    pointer-events: none;
  }
  .error-texture img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
  }
  .error-texture::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #fff 100%);
  }
  .error-inner {
    position: relative; z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 56px 80px 56px;
    text-align: center;
  }
  .error-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .error-heading {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: -1.68px;
    color: var(--brown);
  }
  .error-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: -1.68px;
    color: var(--brown);
  }
  .error-sub {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 682px;
  }
  .error-line {
    width: 100vw;
    height: 12px;
    border-radius: 24px;
    background: var(--red);
    animation: lineExpand 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
  }
  @keyframes lineExpand {
    0%   { transform: scaleX(0); }
    100% { transform: scaleX(1); }
  }
  @media (max-width: 768px) {
    .error-inner { padding: 40px 24px; gap: 24px; }
    .error-heading { font-size: 40px; }
    .error-title { font-size: 32px; }
    .error-sub { font-size: 16px; }
    .error-line { height: 8px; }
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    .error-inner { padding: 48px 32px; }
    .error-heading { font-size: 48px; }
    .error-title { font-size: 44px; }
  }

  /* ── RWD improvements ── */

  /* Reduce padding below 1200px */
  @media (max-width: 1200px) {
    .hero-inner, .concept-inner, .faq-inner, .team-inner,
    .etapy-inner, .testimonials-inner, .footer-inner,
    .cta-outer, .tagline-inner, .pain-inner, .stats-inner,
    .meet-inner, .pricing-inner, .source-inner, .fund-inner {
      padding-left: 32px;
      padding-right: 32px;
    }
    .concept-row1 { padding-left: 32px; padding-right: 32px; }
  }

  /* O nas: flex swap at 1024px */
  @media (max-width: 1024px) {
    .onas-hero .team-inner { flex-direction: column-reverse; }
    .onas-hero .collage-photos { order: 0; }
  }

  /* Concept: below 1024px — stacked: header, photo, chart */
  @media (max-width: 1024px) {
    .concept-row1 { flex-direction: column; gap: 32px; }
    .concept-head { text-align: center; align-items: center; }
    .concept-head .kicker-left::after { left: 50%; transform: translateX(-50%); }
    .concept-right {
      width: 100% !important; max-width: 100% !important;
      height: auto !important; aspect-ratio: 4/3;
      order: -1; /* photo above chart */
    }
    .concept-right-inner { position: relative !important; width: 100% !important; height: 100% !important; left: 0 !important; border-radius: 16px !important; overflow: hidden; }
    .concept-photo { left: 0 !important; top: 0 !important; width: 100% !important; height: 100% !important; border-radius: 16px !important; }
    .concept-photo img { object-fit: cover; object-position: center 30%; }
    .cloud-word { display: none; }
    .concept-chart { width: 100%; max-width: 100%; height: 300px; }
    .chart-scroller-container { left: 100px !important; }
    .chart-lbl { font-size: 12px !important; }
    .chart-scroller-inner span { font-size: 13px !important; height: 50px !important; }
    .chart-green-line { top: 150px !important; }
    /* JS drives the scroll animation on all breakpoints.
       margin-top reset so words align with the green line at 150px (3×50). */
    .chart-scroller-inner {
      margin-top: 0px !important;
      animation: none !important;
    }
    /* Symmetric masks: top word fades in, bottom word fades out */
    .nad-layer {
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, white 30%, white 100%) !important;
      mask-image: linear-gradient(to bottom, transparent 0%, white 30%, white 100%) !important;
    }
    .pod-layer {
      -webkit-mask-image: linear-gradient(to bottom, white 0%, white 70%, transparent 100%) !important;
      mask-image: linear-gradient(to bottom, white 0%, white 70%, transparent 100%) !important;
    }
    /* Labels centered in each half */
    .chart-lbl:first-of-type { top: 65px !important; }
    .chart-lbl:last-of-type  { top: 215px !important; }
  }

  /* Drama: headers counter-scaled via JS in measure() */

  /* Drama: neg text centered (below 1024px, handled by the 1024px drama block above) */
  @media (max-width: 1024px) {
    .drama-word-c[data-neg="neg-inicjatywa"],
    .drama-word-c[data-neg="neg-komunikacja"],
    .drama-word-c[data-neg="neg-zaufanie"] {
      left: 50% !important;
      right: auto !important;
      transform: translateX(-50%) !important;
      width: calc(100% - 32px) !important;
      max-width: 320px !important;
      text-align: center !important;
    }
    .drama-word-c[data-neg="neg-inicjatywa"] { top: 396px !important; }
    .drama-word-c[data-neg="neg-komunikacja"] { top: 476px !important; }
    .drama-word-c[data-neg="neg-zaufanie"] { top: 556px !important; }
  }
