﻿*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:       #ffffff;
      --bg-alt:   #f5f5f7;
      --bg-deep:  #eeebe6;
      --bg-card:  #fafaf9;
      --text:     #1d1d1f;
      --text-mid: #4a4a4f;
      --text-soft:#86868b;
      --text-mute:#b0b0b5;
      --border:   rgba(0,0,0,0.07);
      --border-md:rgba(0,0,0,0.13);
      --accent:   #032d90;
      --accent2:  #0f2852;
      --stone:    #c8bfb2;
      --stone-lt: #e4ddd4;
      --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ═══════════════════════════════
       PROGRESS BAR
    ═══════════════════════════════ */
    #progressBar {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      background: var(--accent);
      width: 0%;
      z-index: 200;
      transform-origin: left;
      transition: width 0.1s linear;
    }

    /* ═══════════════════════════════
       PRELOADER
    ═══════════════════════════════ */
    #preloader {
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.4s ease 0.5s;
    }
    #preloader.done {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }

    /* ── SVG logo ── */
    .pre-logo {
      width: min(300px, 72vw);
      height: auto;
      overflow: visible;
    }

    /* Stroke draw layer */
    .pre-draw {
      fill: none;
      stroke: #0044AA;
      stroke-width: 6;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 2400;
      stroke-dashoffset: 2400;
      animation: preDraw 0.7s cubic-bezier(0.37, 0, 0.63, 1) 0.1s forwards,
                 preStrokeFade 0.25s ease 0.9s forwards;
    }
    @keyframes preDraw      { to { stroke-dashoffset: 0; } }
    @keyframes preStrokeFade{ to { opacity: 0; } }

    /* House fill — appears as stroke finishes */
    .pre-house-fill {
      opacity: 0;
      animation: preFade 0.25s ease 0.8s forwards;
    }

    /* TM mark */
    .pre-tm {
      opacity: 0;
      animation: preFade 0.2s ease 1.0s forwards;
    }

    /* KOSMO letters — staggered */
    .pre-l {
      opacity: 0;
    }
    .pre-l1 { animation: preFade 0.22s ease 0.82s forwards; }
    .pre-l2 { animation: preFade 0.22s ease 0.90s forwards; }
    .pre-l3 { animation: preFade 0.22s ease 0.98s forwards; }
    .pre-l4 { animation: preFade 0.22s ease 1.06s forwards; }
    .pre-l5 { animation: preFade 0.22s ease 1.14s forwards; }

    @keyframes preFade { to { opacity: 1; } }

    /* ═══════════════════════════════
       CURSOR
    ═══════════════════════════════ */
    .cursor-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.08s;
    }
    .cursor-ring {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1.5px solid rgba(58,53,48,0.3);
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width 0.35s var(--spring), height 0.35s var(--spring), border-color 0.3s, background 0.3s;
    }
    .cursor-ring.hovering {
      width: 56px; height: 56px;
      border-color: rgba(58,53,48,0.2);
      background: rgba(58,53,48,0.04);
    }
    .cursor-ring.clicking {
      width: 24px; height: 24px;
      background: rgba(58,53,48,0.12);
    }
    @media (hover:none) { .cursor-dot, .cursor-ring { display:none; } }

    /* ═══════════════════════════════
       NAV
    ═══════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 52px;
      background: rgba(255,255,255,0.82);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      border-color: var(--border);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-logo {
      display: flex; align-items: center;
      text-decoration: none;
    }
    .nav-logo-img {
      height: 34px;
      width: auto;
      display: block;
      opacity: 0.9;
      transition: opacity 0.2s;
    }
    .nav-logo:hover .nav-logo-img { opacity: 1; }

    .footer-logo-img {
      height: 38px;
      width: auto;
      display: block;
      opacity: 0.7;
    }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 13px; color: var(--text-mid);
      text-decoration: none; letter-spacing: 0.01em;
      transition: color 0.2s;
      position: relative;
      overflow: hidden;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: -2px; left: -120%;
      width: 60%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(58,95,142,0.8), transparent);
      transition: left 0.5s var(--ease);
      pointer-events: none;
    }
    .nav-links a:hover::after { left: 120%; }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    .hero {
      position: relative;
      height: 100vh; min-height: 720px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(21,52,98,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 85% 75%, rgba(58,95,142,0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(21,52,98,0.12) 0%, transparent 60%);
      animation: bgPulse 12s ease-in-out infinite alternate;
      overflow: hidden;
    }
    .hero-bg::before,
    .hero-bg::after {
      filter: none;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
      content: "";
      position: absolute;
      left: -10%; right: -10%;
      height: 55%;
      background-repeat: no-repeat;
      background-size: 200% 100%;
      opacity: 0.45;
      filter: blur(0.5px);
    }
    .hero-bg::before {
      filter: none;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
      bottom: -5%;
      background-image: url("data:image/svg+xml,%3Csvg width='1600' height='400' viewBox='0 0 1600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 240 C 200 280, 400 200, 600 240 C 800 280, 1000 160, 1200 200 C 1400 240, 1600 180, 1600 180 L1600 400 L0 400 Z' fill='%23032d90' fill-opacity='0.28'/%3E%3Cpath d='M0 280 C 250 320, 450 240, 700 280 C 950 320, 1150 200, 1400 240 C 1550 260, 1600 240, 1600 240 L1600 400 L0 400 Z' fill='%230f2852' fill-opacity='0.22'/%3E%3C/svg%3E");
      animation: waveMove 22s linear infinite;
    }
    .hero-bg::after {
      filter: none;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
      bottom: -15%;
      background-image: url("data:image/svg+xml,%3Csvg width='1600' height='360' viewBox='0 0 1600 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 C 300 260, 500 140, 800 200 C 1100 260, 1300 160, 1600 200 L1600 360 L0 360 Z' fill='%23032d90' fill-opacity='0.18'/%3E%3C/svg%3E");
      animation: waveMove 28s linear infinite reverse;
      opacity: 0.35;
    }
    @keyframes bgPulse {
      from { opacity: 0.75; transform: scale(1); }
      to   { opacity: 1;   transform: scale(1.03); }
    }
    @keyframes waveMove {
      from { background-position-x: 0%; }
      to { background-position-x: 200%; }
    }

    /* Decorative thin lines */
    .hero-line-left, .hero-line-right {
      position: absolute;
      top: 0; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(58,95,142,0.25) 30%, rgba(58,95,142,0.25) 70%, transparent);
    }
    .hero-line-left  { left: 48px; }
    .hero-line-right { right: 48px; }

    .hero-eyebrow {
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent2);
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.9s var(--ease) 0.4s forwards;
      margin-bottom: 24px;
    }

    /* Word-by-word reveal title */
    .hero-title {
      font-size: clamp(52px, 7vw, 96px);
      font-weight: 700; line-height: 1.06;
      letter-spacing: -0.035em; color: var(--text);
      max-width: 840px;
    }
    .hero-title .word {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
    }
    .hero-title .word-inner {
      display: inline-block;
      transform: translateY(100%);
      animation: wordReveal 0.75s var(--spring) forwards;
    }
    .line-warm { color: var(--accent2); }

    .hero-sub {
      margin-top: 28px;
      font-size: clamp(16px, 2vw, 20px);
      line-height: 1.65; color: var(--text-soft);
      max-width: 500px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 1s var(--ease) 1.2s forwards;
    }
    .hero-actions {
      margin-top: 48px;
      display: flex; gap: 16px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 1s var(--ease) 1.45s forwards;
    }

    .hero-scroll-hint {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0;
      animation: fadeUp 1s var(--ease) 1.9s forwards;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--stone), transparent);
      animation: scrollLine 2.2s ease-in-out 2.2s infinite;
    }
    .scroll-label {
      font-size: 11px; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-mute);
    }
    @keyframes scrollLine {
      0%,100% { transform: scaleY(1); opacity: 1; }
      50%      { transform: scaleY(0.3); opacity: 0.2; }
    }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes wordReveal { to { transform: translateY(0); } }

    /* ═══════════════════════════════
       BUTTONS
    ═══════════════════════════════ */
    .btn {
      position: relative;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px; border-radius: 980px;
      font-size: 15px; font-weight: 500;
      text-decoration: none; letter-spacing: 0.01em;
      cursor: pointer; border: none; overflow: hidden;
      transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    }
    /* Magnetic wrapper — JS will nudge these */
    .btn-magnetic { display: inline-block; }

    .btn:active { transform: scale(0.97) !important; }

    .btn-primary {
      background: var(--accent); color: #fff;
      box-shadow: 0 4px 20px rgba(58,53,48,0.2);
    }
    .btn-primary:hover { box-shadow: 0 8px 28px rgba(58,53,48,0.3); }
    .btn-primary::after,
    .btn::after {
      content: "";
      position: absolute; top: 0; left: -150%;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
      transform: skewX(-20deg);
      transition: left 0.6s var(--ease);
      pointer-events: none;
    }
    .btn:hover::after { left: 150%; }

    .btn-ghost {
      background: linear-gradient(135deg, #032d90 0%, #0f2852 100%); color: #fff;
      border: 1px solid var(--border-md);
    }
    .btn-ghost:hover { background: #032d90; }

    /* Ripple on click */
    .btn .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      transform: scale(0); animation: rippleAnim 0.5s linear;
      pointer-events: none;
    }
    @keyframes rippleAnim {
      to { transform: scale(4); opacity: 0; }
    }

    /* ═══════════════════════════════
       MARQUEE
    ═══════════════════════════════ */
    .marquee-strip {
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
      padding: 18px 0;
      user-select: none;
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marqueeScroll 28s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item {
      display: flex; align-items: center; gap: 28px;
      padding: 0 28px;
      font-size: 13px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-soft); white-space: nowrap;
    }
    .marquee-dot {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--stone); flex-shrink: 0;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ═══════════════════════════════
       SECTIONS COMMON
    ═══════════════════════════════ */
    section {
      padding: 120px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-eyebrow {
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent2); margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 700; line-height: 1.1;
      letter-spacing: -0.03em; color: var(--text);
      margin-bottom: 20px;
    }
    .section-sub {
      font-size: 19px; line-height: 1.65;
      color: var(--text-soft); max-width: 540px;
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal.delay-1 { transition-delay: 0.10s; }
    .reveal.delay-2 { transition-delay: 0.20s; }
    .reveal.delay-3 { transition-delay: 0.30s; }
    .reveal.delay-4 { transition-delay: 0.42s; }

    .divider {
      height: 1px; background: var(--border);
      max-width: 1200px; margin: 0 auto;
    }

    /* ═══════════════════════════════
       STATS
    ═══════════════════════════════ */
    .stats-section { padding: 80px 48px; position: relative; }
    .stats-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; background: rgba(21,52,98,0.12);
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 1px 0 rgba(21,52,98,0.06) inset;
    }
    .stat-item {
      background: linear-gradient(180deg, rgba(21,52,98,0.05) 0%, rgba(58,95,142,0.04) 100%);
      padding: 52px 44px; text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s var(--ease);
    }
    .stat-item::before {
      content: "";
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(58,95,142,0.08), transparent 70%);
      pointer-events: none;
    }
    .stat-item::after {
      content: "";
      position: absolute; top: 0; left: -150%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(58,95,142,0.22), transparent);
      transform: skewX(-20deg);
      transition: left 0.7s var(--ease);
      pointer-events: none;
    }
    .stat-item:hover {
      transform: translateY(-2px);
    }
    .stat-item:hover::after {
      left: 150%;
    }
    .stat-num {
      font-size: 64px; font-weight: 700;
      letter-spacing: -0.04em; color: var(--accent);
      line-height: 1; display: block;
      transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
    }
    .stat-item:hover .stat-num {
      text-shadow: 0 0 24px rgba(21,52,98,0.25);
    }
    .stat-label {
      margin-top: 10px; font-size: 14px;
      color: var(--text-soft);
    }

    /* ═══════════════════════════════
       STORYTELLING — STICKY SCROLL
    ═══════════════════════════════ */
    .story-section {
      padding: 0 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .story-header {
      padding: 120px 0 80px;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }

    .story-scroll-area {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* Left sticky panel */
    .story-sticky {
      position: sticky;
      top: 80px;
      height: calc(100vh - 120px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .story-visual {
      position: relative;
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 16px;
      overflow: hidden;
      background: #032d90;
    }

    /* Each visual panel */
    .story-panel {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
      transform: scale(1.03);
      border-radius: 16px;
      overflow: hidden;
    }
    .story-panel.active {
      opacity: 1; transform: scale(1);
    }

    .story-panel-bg {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
    }
    .panel-bg-1 { background: linear-gradient(145deg, #e8e2d9, #d4c8b6, #c4b49e); }
    .panel-bg-2 { background: linear-gradient(145deg, #e2e4e8, #cfd2da, #bfc3ce); }
    .panel-bg-3 { background: linear-gradient(145deg, #e9e6e2, #dad5ce, #ccc4ba); }
    .panel-bg-4 { background: linear-gradient(145deg, #ebe8e4, #ddd7cf, #cfc7bc); }

    .panel-icon {
      width: 64px; height: 64px; color: rgba(255,255,255,0.5);
    }

    /* Panel label overlay */
    .story-panel-label {
      position: absolute;
      bottom: 28px; left: 28px; right: 28px;
    }
    .spl-step {
      font-size: 11px; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
      margin-bottom: 6px;
    }
    .spl-title {
      font-size: 22px; font-weight: 600;
      color: rgba(255,255,255,0.95); letter-spacing: -0.01em;
    }

    /* Right scrollable content */
    .story-right {
      padding: 120px 0;
      display: flex; flex-direction: column; gap: 0;
    }

    .story-item {
      padding: 80px 0;
      border-bottom: 1px solid var(--border);
      opacity: 0.3;
      transition: opacity 0.5s var(--ease);
    }
    .story-item:last-child { border-bottom: none; }
    .story-item.active { opacity: 1; }
    .story-item:first-child { padding-top: 0; }

    .si-num {
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.15em; color: var(--accent2);
      margin-bottom: 20px;
    }
    .si-title {
      font-size: 28px; font-weight: 700;
      letter-spacing: -0.02em; color: var(--text);
      margin-bottom: 16px; line-height: 1.2;
    }
    .si-desc {
      font-size: 17px; line-height: 1.75;
      color: var(--text-soft); margin-bottom: 24px;
    }
    .si-detail {
      display: flex; flex-direction: column; gap: 10px;
    }
    .si-detail-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px; color: var(--text-mid);
    }
    .si-detail-item::before {
      content: "";
      width: 20px; height: 1px;
      background: var(--stone);
      margin-top: 10px; flex-shrink: 0;
    }

    /* ═══════════════════════════════
       BEFORE / AFTER SLIDER
    ═══════════════════════════════ */
    .ba-section {
      padding: 120px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .ba-header { margin-bottom: 64px; }

    .ba-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      user-select: none;
      touch-action: pan-y;
      cursor: ew-resize;
      aspect-ratio: 16/9;
      background: #032d90;
      box-shadow: 0 2px 40px rgba(0,0,0,0.08);
    }

    .ba-before, .ba-after {
      position: absolute;
      inset: 0;
    }

    .ba-after {
      clip-path: inset(0 50% 0 0);
      transition: clip-path 0.02s linear;
    }

    .ba-before-bg {
  width: 100%; height: 100%;
  background-image: url('https://markuj.pl/gallery/przed.jpg');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
}
    .ba-after-bg {
  width: 100%; height: 100%;
  background-image: url('https://markuj.pl/gallery/po.jpg');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
}

    .ba-room-silhouette {
      width: 80%; max-width: 600px;
      opacity: 0.15;
    }

    .ba-label {
      position: absolute;
      top: 28px;
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      background: rgba(255,255,255,0.9);
      color: var(--text);
      padding: 6px 14px; border-radius: 980px;
      backdrop-filter: none;
    }
    .ba-label-before { left: 28px; }
    .ba-label-after  { right: 28px; }

    /* Drag handle */
    .ba-handle {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      background: #fff;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
      transition: left 0.02s linear;
      pointer-events: none;
    }
    .ba-knob {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 48px; height: 48px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 2px 16px rgba(0,0,0,0.18);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-mid);
    }

    /* ═══════════════════════════════
       HORIZONTAL SCROLL PROJECTS
    ═══════════════════════════════ */
    .hscroll-section {
      padding: 120px 0;
      overflow: hidden;
    }

    .hscroll-header {
      padding: 0 48px;
      max-width: 1200px;
      margin: 0 auto 56px;
    }

    .hscroll-track-wrap {
      overflow: hidden;
      position: relative;
    }
    .hscroll-track-wrap::after {
      content: "";
      position: absolute;
      top: 0; right: 0; bottom: 0;
      width: 120px;
      background: linear-gradient(to left, var(--bg), transparent);
      pointer-events: none;
      z-index: 2;
    }

    .hscroll-track {
      display: flex;
      gap: 20px;
      padding: 0 48px;
      animation: hScroll 30s linear infinite;
      width: max-content;
    }
    .hscroll-track:hover { animation-play-state: paused; }

    .hcard { cursor: pointer;
      flex-shrink: 0;
      width: 340px;
      border-radius: 16px;
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
      position: relative;
    }
    .hcard:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 24px 60px rgba(0,0,0,0.10);
    }

    .hcard-img {
      width: 100%; height: 220px; display: block;
      transition: transform 0.6s var(--ease);
    }
    .hcard:hover .hcard-img { transform: scale(1.05); }

    .hcard-img-1 { background-image: url("img/photo-1.jpg"); background-size:cover;}
    .hcard-img-2 { background-image: url("img/photo-2.jpg"); background-size:cover;}
    .hcard-img-3 { background-image: url("img/photo-3.jpg"); background-size:cover;}
    .hcard-img-4 { background-image: url("img/photo-4.jpg"); background-size:cover; min-height:220px;}
    .hcard-img-5 { background-image: url("img/photo-5.jpg"); background-size:cover;}
    .hcard-img-6 { background: linear-gradient(145deg, #e8e6e2, #d8d0c8); }

    .hcard-body { padding: 24px; }
    .hcard-tag {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--accent2); margin-bottom: 8px;
    }
    .hcard-name {
      font-size: 18px; font-weight: 600;
      letter-spacing: -0.01em; color: var(--text);
      margin-bottom: 6px;
    }
    .hcard-meta {
      font-size: 13px; color: var(--text-soft);
    }

    @keyframes hScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ═══════════════════════════════
       SERVICES
    ═══════════════════════════════ */
    .services-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; margin-top: 72px;
      background: var(--border);
      border-radius: 20px; overflow: hidden;
    }
    .service-card {
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
      padding: 44px 36px;
      position: relative; overflow: hidden;
      transition: background 0.3s var(--ease);
    }
    .service-card::before {
      content: "";
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--stone), transparent);
      transform: scaleX(0); transition: transform 0.5s var(--ease);
    }
    .service-card:hover { background: #032d90; }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 44px; height: 44px;
      margin-bottom: 24px; color: var(--accent2);
    }
    .service-name {
      font-size: 20px; font-weight: 600;
      letter-spacing: -0.01em; color: var(--text); margin-bottom: 14px;
    }
    .service-desc {
      font-size: 14px; line-height: 1.75; color: var(--text-soft);
    }

    /* ═══════════════════════════════
       PARALLAX QUOTE
    ═══════════════════════════════ */
    
    .parallax-img {
      position: absolute; top: -15%; left: 0; right: 0; height: 130%;
      display: flex; align-items: center; justify-content: center;
      will-change: transform;
    }
    .parallax-content { text-align: center; padding: 0 48px; }
    .parallax-label {
      font-size: 12px; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--accent2); margin-bottom: 24px;
    }
    .parallax-quote {
      font-size: clamp(26px, 3.8vw, 50px);
      font-weight: 600; letter-spacing: -0.025em;
      line-height: 1.22; color: #ffffff; max-width: 780px;
    }
    .parallax-quote em { font-style: italic; color: var(--accent2); }

    /* ═══════════════════════════════
       PROCESS
    ═══════════════════════════════ */
    .process-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center; margin-bottom: 80px;
    }
    .process-steps { display: flex; flex-direction: column; }
    .process-step {
      display: grid; grid-template-columns: 60px 1fr;
      gap: 24px; padding: 32px 0;
      border-bottom: 1px solid var(--border);
      transition: padding-left 0.3s var(--ease);
      cursor: default;
    }
    .process-step:hover { padding-left: 8px; }
    .step-num {
      font-size: 12px; font-weight: 600;
      color: var(--accent2); letter-spacing: 0.08em; padding-top: 3px;
    }
    .step-title {
      font-size: 19px; font-weight: 600;
      color: var(--text); margin-bottom: 8px;
    }
    .step-desc {
      font-size: 14px; line-height: 1.75; color: var(--text-soft);
    }

    /* ═══════════════════════════════
       TESTIMONIAL — CARDS CAROUSEL
    ═══════════════════════════════ */
    
    .testi-header { margin-bottom: 64px; }
    .testi-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 36px;
      position: relative;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    }
    .testi-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.07);
    }
    
    .testi-text {
      font-size: 16px; line-height: 1.75; color: var(--text-mid);
      margin-bottom: 28px; font-style: italic;
    }
    .testi-author {
      display: flex; align-items: center; gap: 14px;
    }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: #032d90;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 600; color: var(--accent2);
      flex-shrink: 0;
    }
    .testi-name {
      font-size: 15px; font-weight: 600; color: var(--text);
    }
    .testi-meta {
      font-size: 13px; color: var(--text-soft); margin-top: 2px;
    }

    /* ═══════════════════════════════
       OPINIE GOOGLE
    ═══════════════════════════════ */
    .reviews-section {
      width: 100%;
      position: relative;
      overflow: hidden;
      padding: 120px 0 130px;
      background: #07132b;
    }

    .reviews-parallax-bg {
      position: absolute;
      inset: -30% 0;
      background:
        radial-gradient(ellipse 900px 700px at 20% 60%, rgba(3,45,144,0.35), transparent 65%),
        radial-gradient(ellipse 700px 500px at 85% 30%, rgba(15,40,82,0.25), transparent 65%);
      transform: translateY(var(--parallax-reviews, 0));
      will-change: transform;
      pointer-events: none;
    }

    .reviews-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .reviews-google-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 9px 20px;
      margin-bottom: 32px;
    }
    .reviews-badge-text {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      font-weight: 500;
    }
    .reviews-stars {
      color: #fbbf24;
      font-size: 14px;
      letter-spacing: 1px;
    }

    .reviews-title {
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.15;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .review-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 20px;
      padding: 36px 32px;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .review-card:hover {
      background: rgba(255,255,255,0.09);
      transform: translateY(-4px);
    }

    .review-stars {
      color: #fbbf24;
      font-size: 18px;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .review-text {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255,255,255,0.8);
      font-style: italic;
      font-weight: 300;
      margin-bottom: 28px;
      quotes: "\201E" "\201D";
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 20px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #032d90, #3374e0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .review-name {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 2px;
    }
    .review-meta {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
    }

    /* ═══════════════════════════════
       MAPA GOOGLE
    ═══════════════════════════════ */
    .map-section {
      width: 100%;
      position: relative;
      overflow: hidden;
      height: 560px;
    }

    .map-parallax-wrap {
      position: absolute;
      inset: -15% 0;
      width: 100%;
      height: 130%;
      transform: translateY(var(--parallax-map, 0));
      will-change: transform;
    }
    .map-parallax-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      filter: saturate(0.85) contrast(1.05);
    }

    .map-vignette {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(7,19,43,0.18) 0%, transparent 20%, transparent 80%, rgba(7,19,43,0.18) 100%),
        linear-gradient(to bottom, rgba(7,19,43,0.1) 0%, transparent 15%, transparent 85%, rgba(7,19,43,0.15) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .map-card {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(21,52,98,0.12);
      border-radius: 18px;
      padding: 18px 28px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
      white-space: nowrap;
    }

    .map-pin-icon {
      width: 28px;
      height: 28px;
      color: #032d90;
      flex-shrink: 0;
    }

    .map-card-name {
      font-size: 16px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.2;
    }
    .map-card-addr {
      font-size: 13px;
      color: #64748b;
      margin-top: 2px;
    }

    .map-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-left: 8px;
      padding: 10px 20px;
      background: #032d90;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease;
      flex-shrink: 0;
    }
    .map-card-link:hover { background: #0044d4; transform: translateX(2px); }

    /* ═══════════════════════════════
       GALERIA REALIZACJI
    ═══════════════════════════════ */
    .gal-section { padding: 80px 0 120px; }

    .gal-head {
      padding: 0 48px;
      max-width: 640px;
      margin-bottom: 52px;
    }
    .gal-sub {
      font-size: 17px;
      color: var(--text-soft);
      margin-top: 14px;
      line-height: 1.6;
    }

    .gal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 300px;
      gap: 10px;
      padding: 0 48px;
    }

    .gal-item {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      cursor: pointer;
      background: var(--bg-deep);
    }
    .gal-item.gal-tall { grid-row: span 2; }

    .gal-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s var(--ease);
    }
    .gal-item:hover img { transform: scale(1.05); }

    .gal-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(2, 18, 58, 0.82) 0%,
        rgba(2, 18, 58, 0.18) 45%,
        transparent 72%
      );
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px 28px;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    }
    .gal-item:hover .gal-overlay {
      opacity: 1;
      transform: translateY(0);
    }

    .gal-tag {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 7px;
    }
    .gal-name {
      font-size: clamp(17px, 1.5vw, 22px);
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    /* ═══════════════════════════════
       CTA
    ═══════════════════════════════ */
    .cta-section { padding: 0 48px 120px; }
    .cta-inner {
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
      border: 1px solid var(--border-md);
      border-radius: 28px;
      padding: 100px 80px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-inner::before {
      content: "";
      position: absolute; top: -50%; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(21,52,98,0.22) 0%, rgba(58,95,142,0.16) 35%, transparent 70%);
      pointer-events: none;
      filter: none;
    }
    .cta-title {
      font-size: clamp(36px, 4.5vw, 60px);
      font-weight: 700; letter-spacing: -0.03em;
      line-height: 1.1; color: var(--text); margin-bottom: 20px;
    }
    .cta-sub {
      font-size: 19px; color: var(--text-soft); margin-bottom: 48px;
    }

    /* ═══════════════════════════════
       BADGE
    ═══════════════════════════════ */
    .badge {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 6px 16px; border-radius: 980px;
      background: rgba(58,53,48,0.06);
      border: 1px solid rgba(58,53,48,0.14);
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 28px;
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent2);
      animation: badgePulse 1.8s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.35; transform: scale(0.7); }
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px; max-width: 1200px; margin: 0 auto;
    }
    .footer-inner {
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-logo { font-size: 16px; font-weight: 600; color: var(--text); }
    .footer-copy { font-size: 13px; color: var(--text-mute); }
    .footer-links { display: flex; gap: 24px; list-style: none; }
    .footer-links a {
      font-size: 13px; color: var(--text-soft);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }

    /* ═══════════════════════════════
       RESPONSIVE
    ═══════════════════════════════ */
    @media (max-width: 960px) {
      nav { padding: 0 24px; }
      .nav-links { gap: 18px; }
      section { padding: 80px 24px; }
      .gal-grid { padding: 0 24px; gap: 8px; grid-auto-rows: 240px; }
      .gal-head { padding: 0 24px; }
      .gal-overlay { opacity: 1; transform: none; }
      .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
      .reviews-inner { padding: 0 24px; }
      .map-card { flex-wrap: wrap; justify-content: center; text-align: center; white-space: normal; bottom: 24px; left: 24px; right: 24px; transform: none; }
      .hero-line-left, .hero-line-right { display: none; }
      .story-scroll-area { grid-template-columns: 1fr; }
      .story-sticky { position: relative; top: 0; height: auto; }
      .story-visual { aspect-ratio: 4/3; }
      .story-right { padding: 40px 0; }
      .services-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
      .process-header { grid-template-columns: 1fr; gap: 40px; }
      .testi-track { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
      .cta-inner { padding: 64px 28px; }
      .ba-section { padding: 80px 24px; }
      .hscroll-header { padding: 0 24px; }
      .story-section { padding: 0 24px; }
    }

    @media (max-width: 640px) {
      nav { justify-content: center; }
      .nav-links { display: none; }
      .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
      .gal-item.gal-tall { grid-row: span 1; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; justify-content: center; }
      .ba-label { top: 16px; font-size: 10px; padding: 5px 10px; }
      .ba-label-before { left: 16px; }
      .ba-label-after { right: 16px; }
      .ba-knob { width: 42px; height: 42px; }
    }
  
    /* PROCESS STEPS - Jak pracujemy */
    .process-wrap { max-width: 1100px; margin: 60px auto 0; padding: 0 24px; position: relative; }
    .process-head { text-align: center; margin-bottom: 72px; }
    .process-head h3 { font-size: clamp(28px,4vw,40px); font-weight:700; letter-spacing:-0.02em; color: var(--text); }
    .process-head .gradient-text { background: linear-gradient(90deg, var(--accent), var(--accent2)); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-top: 4px; }
    .process-timeline { position: relative; }
    .process-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(0,0,0,0.06); transform: translateX(-0.5px); }
    .process-line-fill { position: absolute; left: 0; top: 0; width: 100%; height: 84%; background: linear-gradient(to bottom, var(--accent), var(--accent2)); opacity: 0.5; }
    .process-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 96px; align-items: start; }
    .process-item:last-child { margin-bottom: 0; }
    .process-dot { position: absolute; left: 50%; top: 12px; width: 16px; height: 16px; transform: translateX(-50%); border-radius: 50%; background: var(--bg); border: 2px solid var(--accent); box-shadow: 0 0 0 4px rgba(255,255,255,0.08); z-index: 2; }
    .process-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent); animation: processPulse 2s infinite; }
    @keyframes processPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
    .process-content { padding-top: 0; }
    .process-item:nth-child(odd) .process-content { text-align: right; padding-right: 48px; }
    .process-item:nth-child(even) .process-content { grid-column: 2; text-align: left; padding-left: 48px; }
    .process-meta { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 12px; }
    .process-item:nth-child(odd) .process-meta { flex-direction: row-reverse; }
    .process-icon { color: var(--accent2); width: 40px; height: 40px; }
    .process-num { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 48px; font-weight: 800; color: rgba(21,52,98,0.18); line-height: 1; }
    .process-title { font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
    .process-desc { color: var(--text-mid); line-height: 1.65; font-size: 16px; max-width: 420px; }
    .process-item:nth-child(odd) .process-desc { margin-left: auto; }
    @media (max-width: 900px) {
      .process-line { left: 24px; }
      .process-dot { left: 24px; }
      .process-item { grid-template-columns: 1fr; gap: 0; padding-left: 64px; margin-bottom: 72px; }
      .process-item:nth-child(even) .process-content, .process-item:nth-child(odd) .process-content { grid-column: 1; text-align: left; padding: 0; }
      .process-item:nth-child(odd) .process-meta { flex-direction: row; }
      .process-desc { max-width: none; }
    }


    .contact-card:hover { border-color: rgba(21,52,98,0.3) !important; background: rgba(21,52,98,0.04) !important; transform: translateY(-2px); }
    .contact-card:hover div { background: var(--accent) !important; color: white !important; border-color: var(--accent) !important; }
    @media (max-width: 900px) { #kontakt > div:nth-of-type(2) { grid-template-columns: 1fr !important; } }


    .stat-item-new:hover { background: linear-gradient(180deg, rgba(21,52,98,0.03), rgba(58,95,142,0.02)) !important; }
    .stat-item-new:hover > div:first-child { background: linear-gradient(to right, var(--accent), transparent) !important; }
    .stat-item-new:hover div[style*="color:rgba"] { color: var(--accent2) !important; }
    .stat-item-new:hover h3 { color: var(--accent) !important; }
    @media (max-width: 1024px) { .stats-section > div > div { grid-template-columns: repeat(2,1fr) !important; } }
    @media (max-width: 640px) { .stats-section > div > div { grid-template-columns: 1fr !important; } .stats-section { padding: 80px 0 !important; } }


.cta-parallax::before,
.cta-parallax::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-parallax::before {
  bottom: -5%;
  height: 260px;
  background-image: url("data:image/svg+xml,%3Csvg width='1600' height='400' viewBox='0 0 1600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 240 C 200 280, 400 200, 600 240 C 800 280, 1000 160, 1200 200 C 1400 240, 1600 180, 1600 180 L1600 400 L0 400 Z' fill='%23032d90' fill-opacity='0.28'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  opacity: 0.7;
}
.cta-parallax::after {
  bottom: -15%;
  height: 220px;
  background-image: url("data:image/svg+xml,%3Csvg width='1600' height='360' viewBox='0 0 1600 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 C 300 260, 500 140, 800 200 C 1100 260, 1300 160, 1600 200 L1600 360 L0 360 Z' fill='%230f2852' fill-opacity='0.22'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  opacity: 0.6;
}
.cta-parallax { position: relative; overflow: hidden; }
.cta-parallax > * { position: relative; z-index: 1; }

.parallax-container {
      position: relative; overflow: hidden; height: 500px;
      background-color: #032d90;
    }
    .parallax-container::before {
      content: "";
      position: absolute;
      inset: -20%;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
      background-repeat: repeat;
      transform: translateY(calc(var(--parallax-cta, 0) * 0.5));
      will-change: transform;
      pointer-events: none;
    }
