/* ═══════════════════════════════════════════════════════
   LOVE DIGITEXA 1.0 — Rose & Violet Premium
   Clash Display + Inter · GSAP · Canvas Particles
═══════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:          #0d0614;
  --bg2:         #120819;
  --bg3:         #160a1e;
  --bg4:         #1a0c25;
  --card:        rgba(255,255,255,.038);
  --card-h:      rgba(255,255,255,.065);

  /* Primary — Indigo */
  --pink:        #f472b6;
  --pink-2:      #f9a8d4;
  --pink-3:      #fce7f3;
  --pink-dim:    rgba(244,114,182,.10);
  --pink-b:      rgba(244,114,182,.22);
  --pink-glow:   rgba(244,114,182,.18);

  /* Secondary — Violet */
  --violet:      #a855f7;
  --violet-2:    #c084fc;
  --violet-dim:  rgba(168,85,247,.10);

  /* Tertiary — tiny cyan accents */
  --rose:        #fb7185;
  --rose-dim:    rgba(251,113,133,.07);

  /* Success / Danger */
  --green:       #4ade80;
  --red:         #f87171;

  /* Gradients */
  --grad:        linear-gradient(135deg, #f472b6 0%, #a855f7 100%);
  --grad-cta:    linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
  --grad-text:   linear-gradient(135deg, #f9a8d4 0%, #e879f9 50%, #c084fc 100%);
  --grad-hero:   linear-gradient(125deg, #0d0614 0%, #06091c 40%, #080e28 70%, #0d0614 100%);

  /* Typography */
  --text:        #fdf2ff;
  --text-2:      #e9d5ff;
  --muted:       #a98dbb;   /* podbity kontrast tekstu drugorzędnego (WCAG AA) */
  --faint:       #3d2550;   /* dekoracje (kreski/ikony) — pozostaje subtelny */
  --faint-text:  #8d76a0;   /* czytelny wariant --faint dla DROBNEGO TEKSTU */
  --border:      rgba(168,85,247,.12);
  --border-b:    rgba(168,85,247,.30);

  /* Font stacks */
  --font:        'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:'Clash Display', 'Inter', system-ui, sans-serif;

  /* Shape */
  --r:           12px;
  --r-sm:        8px;
  --r-lg:        20px;
  --r-xl:        28px;

  /* Easing */
  --ease:        0.28s cubic-bezier(.22,1,.36,1);
  --ease-spring: 0.5s cubic-bezier(.34,1.56,.64,1);

  /* Shadows */
  --shadow:      0 2px 12px rgba(0,0,0,.45), 0 0 0 1px var(--border);
  --shadow-card: 0 4px 24px rgba(0,0,0,.5), 0 0 0 1px var(--border);
  --shadow-glow: 0 0 48px rgba(168,85,247,.22), 0 4px 16px rgba(0,0,0,.5);
  --shadow-lift: 0 16px 56px rgba(168,85,247,.18), 0 4px 20px rgba(0,0,0,.6);
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(168,85,247,.4) transparent;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,.35); border-radius: 10px; border: 2px solid var(--bg3); }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── SKIP LINK ─────────────────────────────────────── */
.skip-link {
  position: absolute; top: -120%; left: 16px; z-index: 100000;
  padding: 12px 24px; background: var(--pink); color: #fff;
  font-weight: 700; font-size: .9rem; border-radius: var(--r);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* ── PARTICLES CANVAS ──────────────────────────────── */
#particles-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: .65;
}

/* ── CURSOR GLOW ───────────────────────────────────── */
#cursor-glow {
  position: fixed; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,114,182,.12) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  pointer-events: none; z-index: 1;
  transition: opacity .3s ease;
}
@media (hover: none) { #cursor-glow { display: none; } }

/* ── SCROLL PROGRESS ───────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); z-index: 10000;
  transform-origin: left; transform: scaleX(0);
}

/* ── LAYOUT ────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY UTILITIES ──────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--pink-2);
  margin-bottom: 18px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px;
  background: var(--grad); border-radius: 2px; flex-shrink: 0;
}
.section-label-sm {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.5px;
  margin-bottom: 18px;
  color: var(--text);
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.78;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head { margin-bottom: 56px; }
.section-head .section-sub { max-width: 540px; }

/* ── SECTION ORB ───────────────────────────────────── */
.section-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,114,182,.08) 0%, transparent 65%);
  pointer-events: none;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  cursor: pointer; border: none; outline: none;
  transition: var(--ease);
  white-space: nowrap; min-height: 44px;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); border-radius: inherit;
  transition: background .2s ease;
}
.btn:hover::before { background: rgba(255,255,255,.06); }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 4px 20px rgba(244,114,182,.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(244,114,182,.5); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border-b);
}
.btn-ghost:hover { border-color: var(--pink-2); color: var(--text); background: var(--pink-dim); }

.btn-lg { padding: 15px 34px; font-size: .95rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

/* ── NAVIGATION ────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
}
.nav {
  margin: 16px 24px;
  background: rgba(13,6,20,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(13,6,20,.92);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 12px 20px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display);
  color: var(--text);
}
.logo-main {
  font-weight: 700; font-size: 1.18rem; letter-spacing: -.3px;
}
.logo-text em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: var(--font);
  font-weight: 500; font-size: .58rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--faint);
  margin-top: 3px;
}
.logo-mark { flex-shrink: 0; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: .875rem; font-weight: 500; color: var(--muted);
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--text); background: var(--card); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 10px 22px !important; font-size: .875rem !important; }

/* Hamburger */
.ham {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 8px;
  border-radius: 8px; transition: background .2s ease;
}
.ham:hover { background: var(--card); }
.ham span {
  display: block; height: 1.5px; background: var(--text-2);
  border-radius: 2px; transition: var(--ease);
}
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav */
.mob-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(13,6,20,.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav-inner { padding: 100px 32px 40px; display: flex; flex-direction: column; height: 100%; }
.mob-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mob-link {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s ease;
}
.mob-link:last-child { border-bottom: none; }
.mob-link:hover { color: var(--text); }
.mob-link span { font-size: .75rem; font-family: var(--font); font-weight: 500; color: var(--faint); }
.mob-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mob-footer a { color: var(--muted); font-size: .9rem; transition: color .2s ease; }
.mob-footer a:hover { color: var(--text); }
.mob-cta { margin-top: 8px; align-self: flex-start; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 120px 24px 80px;
  z-index: 2;
}
/* contain: izoluje tło hero z głównego layoutu — animacja aurory i zmiany
   wysokości hero (100dvh ↔ pasek adresu na mobile) nie przesuwają strony = CLS≈0 */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; contain: layout paint; pointer-events: none; }
.hero-aurora {
  position: absolute; inset: -50%;
  will-change: transform, opacity;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(244,114,182,.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(168,85,247,.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(244,114,182,.08) 0%, transparent 50%);
  animation: aurora-pulse 8s ease-in-out infinite alternate;
}
@keyframes aurora-pulse {
  from { opacity: .8; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.04); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,114,182,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,114,182,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, var(--bg) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; width: 100%;
}

/* ── HERO LIVE PHONE (wow w 5s) ───────────────────────── */
.hero-phone { margin-top: 56px; margin-bottom: 8px; display: flex; flex-direction: column; align-items: center; }
.hero-phone-frame {
  position: relative; width: 256px; padding: 11px;
  border-radius: 42px;
  background: linear-gradient(160deg, #2c1733, #120817);
  box-shadow:
    0 40px 90px rgba(0,0,0,.6),
    0 0 0 1px rgba(244,114,182,.16),
    0 0 0 11px #0c0612,
    0 0 0 12px rgba(244,114,182,.10),
    0 0 80px rgba(168,85,247,.22);
}
.hero-phone-notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 24px; background: #0c0612; border-radius: 0 0 16px 16px; z-index: 5;
}
.hero-phone-screen {
  position: relative; border-radius: 32px; overflow: hidden;
  background: #0b0410;
  text-align: center; min-height: 392px;
  display: flex; flex-direction: column;
}

/* ── Cover (zdjęciowy hero strony pary) ── */
.hp-cover {
  position: relative; flex: 0 0 auto; height: 188px;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(244,114,182,.45) 0%, transparent 60%),
    linear-gradient(155deg, #6d1840 0%, #3a1145 45%, #1a0a26 100%);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.hp-cover-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.18) 0%, transparent 45%);
  mix-blend-mode: screen;
}
.hp-cover-hearts { position: absolute; inset: 0; pointer-events: none; }
.hp-cover-hearts span {
  position: absolute; color: rgba(255,255,255,.4); font-size: 13px;
  animation: hpFloat 4.5s ease-in-out infinite;
}
.hp-cover-hearts span:nth-child(1) { left: 18%; top: 30%; animation-delay: 0s; }
.hp-cover-hearts span:nth-child(2) { left: 74%; top: 22%; font-size: 10px; animation-delay: 1.4s; }
.hp-cover-hearts span:nth-child(3) { left: 56%; top: 48%; font-size: 16px; animation-delay: 2.6s; }
@keyframes hpFloat { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(-10px); opacity: .7; } }
.hp-cover-inner {
  position: relative; z-index: 2; padding: 0 18px 20px; width: 100%;
  background: linear-gradient(to top, rgba(11,4,16,.85) 0%, transparent 100%);
}
.hp-heart-badge {
  width: 34px; height: 34px; margin: 0 auto 8px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
}
.hp-eyebrow { font-size: .56rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.hp-names {
  font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: #fff;
  line-height: 1.05; margin-top: 3px; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hp-names em { font-style: italic; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Body (treść strony pary) ── */
.hp-body {
  flex: 1; padding: 18px 16px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 13px;
  background: radial-gradient(ellipse at 50% -10%, #1a0a20 0%, #0b0410 70%);
}
.hp-counter { display: flex; gap: 6px; justify-content: center; }
.hp-unit {
  background: rgba(255,255,255,.05); border: 1px solid rgba(244,114,182,.18);
  border-radius: 11px; padding: 9px 7px; min-width: 44px;
}
.hp-val { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; line-height: 1; }
.hp-secs { color: var(--pink-2); }
.hp-lbl { font-size: .5rem; text-transform: uppercase; letter-spacing: 1px; color: var(--faint); margin-top: 3px; }
.hp-live { display: inline-flex; align-items: center; gap: 6px; font-size: .58rem; color: var(--muted); }
.hp-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: hpPulse 1.6s ease-out infinite;
}
@keyframes hpPulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6);} 70% { box-shadow: 0 0 0 6px rgba(74,222,128,0);} 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0);} }

/* Mini galeria */
.hp-gallery { display: flex; gap: 6px; width: 100%; padding: 0 4px; }
.hp-thumb { flex: 1; height: 46px; border-radius: 9px; border: 1px solid rgba(255,255,255,.06); }
.hp-thumb--1 { background: linear-gradient(135deg, #b83280, #6b1840); }
.hp-thumb--2 { background: linear-gradient(135deg, #7c3aed, #be185d); }
.hp-thumb--3 { background: linear-gradient(135deg, #d4af37, #b45309); }

/* Pasek muzyki */
.hp-music {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 8px 11px; border-radius: 11px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(244,114,182,.14);
}
.hp-music-ico { color: var(--pink-2); display: flex; }
.hp-music-bars { display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.hp-music-bars i { width: 2.5px; background: var(--pink-2); border-radius: 2px; animation: hpEq 1s ease-in-out infinite; }
.hp-music-bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.hp-music-bars i:nth-child(2) { height: 100%; animation-delay: .2s; }
.hp-music-bars i:nth-child(3) { height: 60%; animation-delay: .4s; }
.hp-music-bars i:nth-child(4) { height: 80%; animation-delay: .1s; }
@keyframes hpEq { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }
.hp-music-txt { font-size: .58rem; color: var(--muted); margin-left: auto; }

.hero-phone-cap { margin-top: 20px; font-size: .82rem; color: var(--muted); max-width: 320px; line-height: 1.55; text-align: center; }
@media (prefers-reduced-motion: reduce) {
  .hp-live-dot, .hp-cover-hearts span, .hp-music-bars i { animation: none; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; margin-bottom: 36px;
  background: rgba(244,114,182,.1);
  border: 1px solid rgba(244,114,182,.25);
  border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--pink-3);
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,.6);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
.eyebrow-divider {
  width: 1px; height: 14px;
  background: rgba(244,114,182,.35);
  flex-shrink: 0;
}
.eyebrow-rating {
  color: #fbbf24;
  font-size: .85rem;
  letter-spacing: 1px;
  line-height: 1;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted); line-height: 1.75;
  max-width: 640px; margin: 0 auto 36px;
}

.hero-compare {
  display: block; margin-top: 10px; font-size: .88em; font-weight: 600;
  color: var(--pink-2); font-style: italic;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 14px;
}
.hero-note {
  font-size: .8rem; color: var(--faint);
  margin-bottom: 36px;
}
.note-ico {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 2px;
  opacity: .8;
}

.hero-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 32px;
}
.proof-stars { color: #fbbf24; font-size: 1rem; }
.proof-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); }
.proof-item strong { color: var(--text-2); font-weight: 700; font-size: 1rem; }
.proof-sep { width: 1px; height: 20px; background: var(--border-b); }

.hero-tags {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: .8rem; color: var(--muted);
}
.hero-tag svg { color: var(--green); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--faint); z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--pink-2), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(5,7,26,.6);
  backdrop-filter: blur(12px);
  padding: 24px;
  overflow: hidden;
}
.trust-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-stat {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 8px 32px;
}
.trust-val {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.trust-lbl { font-size: .75rem; color: var(--muted); letter-spacing: .5px; }
.trust-sep { width: 1px; height: 32px; background: var(--border); margin: 0 8px; }

/* ── LOGO MARQUEE ──────────────────────────────────── */
.logo-bar {
  position: relative; z-index: 2;
  padding: 28px 0; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.logo-bar-label {
  text-align: center; font-size: .7rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--faint);
  margin-bottom: 16px;
}
.marquee-wrap { position: relative; overflow: hidden; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-item {
  display: flex; align-items: center; gap: 12px; padding: 0 32px;
  font-size: .85rem; font-weight: 600; color: var(--faint);
  white-space: nowrap;
  transition: color .2s ease;
}
.mq-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--pink);
}

/* ── SECTION SHARED ────────────────────────────────── */
section {
  position: relative; z-index: 2;
  padding: 96px 0;
}

/* ── ABOUT ─────────────────────────────────────────── */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* About visual */
.about-visual {
  position: relative; height: 420px;
}
.avis-card {
  position: absolute;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
  transition: transform .3s ease;
}
.avis-main {
  left: 0; top: 0; right: 40px;
}
.avis-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.avis-status {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--muted);
}
.avis-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74,222,128,.6);
  animation: blink 2.2s ease-in-out infinite;
}
.avis-live {
  font-size: .7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(74,222,128,.12); color: var(--green);
}
.avis-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.avis-metric {
  background: var(--card); border-radius: var(--r-sm);
  padding: 12px; text-align: center;
  border: 1px solid var(--border);
}
.avis-val {
  display: block; font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.avis-lbl { font-size: .7rem; color: var(--faint); margin-top: 4px; }
.avis-url {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--muted); margin-bottom: 12px;
}
.avis-bar { height: 4px; background: var(--card); border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.avis-bar-fill {
  height: 100%; width: 94%;
  background: var(--grad);
  border-radius: 4px;
  animation: bar-grow 1.5s 0.5s both ease-out;
}
@keyframes bar-grow {
  from { width: 0; }
  to   { width: 94%; }
}
.avis-bar-label { font-size: .7rem; color: var(--faint); }
.avis-badge {
  position: absolute; bottom: 60px; right: -10px;
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--muted);
  box-shadow: var(--shadow);
}
.avis-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-2); }
.avis-score {
  position: absolute; bottom: 0; left: 24px;
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.avis-score-val {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.avis-score p { font-size: .75rem; color: var(--muted); margin-top: 4px; }

/* About text */
.about-text {}
.company-facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin: 24px 0;
  padding: 20px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r);
}
.cf-item { display: flex; flex-direction: column; gap: 2px; }
.cf-item span { font-size: .72rem; color: var(--faint); text-transform: uppercase; letter-spacing: 1px; }
.cf-item strong { font-size: .85rem; color: var(--text-2); }
.cf-active { color: var(--green) !important; }

.about-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; border-radius: var(--r);
  border: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.about-item:hover { border-color: var(--border); background: var(--card); }
.about-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--pink-dim); border: 1px solid var(--pink-b);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--pink-2);
}
.about-item h3 { font-size: .9rem; font-weight: 600; margin-bottom: 4px; color: var(--text-2); }
.about-item p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── SERVICES ──────────────────────────────────────── */
.services { overflow: hidden; }
.services .section-orb { top: -100px; right: -200px; }

.svc-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.svc-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,114,182,.05) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.svc-card:hover { border-color: var(--pink-b); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.svc-card:hover::before { opacity: 1; }

.svc-icon-wrap {
  width: 48px; height: 48px;
  background: var(--pink-dim); border: 1px solid var(--pink-b);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  color: var(--pink-2); margin-bottom: 20px;
  transition: transform .3s ease;
}
.svc-card:hover .svc-icon-wrap { transform: scale(1.1); }
.svc-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.svc-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.svc-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.svc-tags li {
  padding: 4px 12px; border-radius: 50px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: .75rem; color: var(--muted);
}

.svc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--pink-2);
  background: var(--pink-dim); border: 1px solid var(--pink-b);
  padding: 9px 18px; border-radius: 50px;
  transition: gap .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
  text-decoration: none;
}
.svc-card:hover .svc-btn { gap: 10px; color: var(--pink-3); background: rgba(244,114,182,.12); border-color: var(--pink-2); }

/* ── CASE STUDIES ──────────────────────────────────── */
.case-studies { overflow: hidden; }
.cs-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 20px; margin-bottom: 56px;
}

.cs-card {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--border);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .3s ease;
}

/* Animated border glow on hover */
.cs-card::after {
  content: ''; position: absolute; inset: -1px; z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244,114,182,.7) 0%, rgba(168,85,247,.5) 50%, rgba(251,113,133,.4) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  padding: 1px;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(244,114,182,.22), 0 8px 24px rgba(0,0,0,.6); border-color: transparent; }
.cs-card:hover::after { opacity: 1; }

/* Scan line / grid texture overlay */
.cs-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cs-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(244,114,182,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,114,182,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0;
  transition: opacity .4s ease;
}
.cs-card:hover .cs-bg::before { opacity: 1; }

.cs-bg--meble {
  background: linear-gradient(135deg, #04050f 0%, #0d0f28 40%, #141840 70%, #0a0c1f 100%);
}
.cs-bg--meble::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 60% 30%, rgba(244,114,182,.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(251,113,133,.07) 0%, transparent 50%);
  z-index: 0;
}
.cs-bg--imperial {
  background: linear-gradient(135deg, #080614 0%, #12096e 45%, #1d1099 100%);
}
.cs-bg--imperial::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 40% 40%, rgba(168,85,247,.3) 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 75% 70%, rgba(244,114,182,.15) 0%, transparent 50%);
  z-index: 0;
}

/* Floating orbs inside cards — adds depth */
.cs-card--featured .cs-bg::after {
  background:
    radial-gradient(ellipse 55% 45% at 35% 35%, rgba(168,85,247,.35) 0%, transparent 55%),
    radial-gradient(ellipse 35% 25% at 75% 65%, rgba(244,114,182,.2) 0%, transparent 50%);
}

.cs-badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  padding: 5px 14px; border-radius: 50px;
  background: rgba(20,8,36,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* LIVE badge variant for real projects */
.cs-card--featured .cs-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(13,6,20,.80);
  border-color: rgba(74,222,128,.3);
  color: var(--green);
}
.cs-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74,222,128,.7);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

.cs-content {
  position: relative; z-index: 2;
  padding: 64px 36px 36px;
  background: linear-gradient(to top, rgba(13,6,20,.97) 0%, rgba(13,6,20,.75) 55%, rgba(13,6,20,.2) 80%, transparent 100%);
  transition: padding .3s ease;
}
.cs-card:hover .cs-content { padding-bottom: 40px; }

.cs-cat {
  font-size: .7rem; color: var(--pink-3); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
  line-height: 1.5; word-break: break-word;
  display: flex; align-items: center; gap: 8px;
}
.cs-cat::before {
  content: ''; display: inline-block;
  width: 16px; height: 1px;
  background: var(--pink-2); flex-shrink: 0;
  border-radius: 2px;
}

.cs-title {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700; margin-bottom: 12px;
  letter-spacing: -.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.cs-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }

/* Metrics — pill style */
.cs-metrics {
  display: flex; gap: 0; margin-bottom: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; overflow: hidden;
}
.cs-metric {
  flex: 1; padding: 10px 14px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.cs-metric:last-child { border-right: none; }
.cs-metric-val {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.cs-metric-lbl { font-size: .68rem; color: var(--faint); margin-top: 3px; letter-spacing: .5px; }

.cs-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-tags span {
  padding: 5px 12px; border-radius: 50px; font-size: .72rem;
  background: rgba(244,114,182,.12); border: 1px solid rgba(244,114,182,.22);
  color: var(--pink-3);
  transition: background .2s ease, border-color .2s ease;
}
.cs-card:hover .cs-tags span { background: rgba(244,114,182,.18); border-color: rgba(244,114,182,.35); }

.cs-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: .88rem; font-weight: 700;
  color: var(--pink-2);
  transition: gap .25s cubic-bezier(.22,1,.36,1), color .2s ease;
  padding: 8px 0;
}
.cs-link svg { transition: transform .25s cubic-bezier(.22,1,.36,1); }
.cs-card:hover .cs-link { gap: 12px; color: #f0abfc; }
.cs-card:hover .cs-link svg { transform: translate(3px, -3px); }

/* Demo buttons */
.cs-demo-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px;
  padding: 9px 18px;
  background: rgba(244,114,182,.1);
  border: 1px solid rgba(244,114,182,.25);
  border-radius: 50px;
  color: #f472b6;
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
  width: fit-content;
}
.cs-demo-btn:hover { background: rgba(244,114,182,.2); border-color: rgba(244,114,182,.5); transform: translateY(-1px); }

.pf-demo-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(244,114,182,.08);
  border: 1px solid rgba(244,114,182,.2);
  border-radius: 50px;
  color: #f472b6;
  font-size: 11px; font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  width: fit-content;
}
.pf-demo-btn:hover { background: rgba(244,114,182,.18); border-color: rgba(244,114,182,.45); }

.cs-num {
  position: absolute; top: 16px; right: 22px; z-index: 2;
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 700;
  line-height: 1; color: rgba(255,255,255,.04);
  letter-spacing: -4px; user-select: none;
  transition: color .4s ease, transform .4s ease;
}
.cs-card:hover .cs-num { color: rgba(255,255,255,.07); transform: translateY(-4px) scale(1.04); }

/* Portfolio sub-grid */
.portfolio-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.pf-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.pf-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .3s ease;
}

/* Top corner glow */
.pf-item::before {
  content: ''; position: absolute; top: 0; left: 0; z-index: 1;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(244,114,182,.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
/* Bottom full overlay */
.pf-item::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(244,114,182,.12) 0%, rgba(168,85,247,.06) 50%, transparent 70%);
  opacity: 0; transition: opacity .4s ease;
}
.pf-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 56px rgba(244,114,182,.2), 0 8px 20px rgba(0,0,0,.5);
  border-color: rgba(244,114,182,.4);
}
.pf-item:hover::before { opacity: 1; }
.pf-item:hover::after  { opacity: 1; }

/* Background — scale on hover */
.pf-bg {
  position: absolute; inset: 0; z-index: 0;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.pf-item:hover .pf-bg { transform: scale(1.04); }

/* Grid lines texture inside pf cards */
.pf-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0; transition: opacity .4s ease;
}
.pf-item:hover .pf-bg::after { opacity: 1; }

.pf-label {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: .67rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(5,7,26,.75); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.8);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  transition: border-color .2s ease, color .2s ease;
}
.pf-item:hover .pf-label { border-color: rgba(244,114,182,.4); color: var(--pink-3); }

/* Project number watermark */
.pf-item .pf-bg::before {
  content: attr(data-n);
  position: absolute; bottom: 8px; right: 14px; z-index: 1;
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  line-height: 1; color: rgba(255,255,255,.04);
  letter-spacing: -2px; user-select: none;
  transition: color .4s ease;
}
.pf-item:hover .pf-bg::before { color: rgba(244,114,182,.1); }

.pf-info {
  position: relative; z-index: 3; padding: 18px 22px;
  background: linear-gradient(to top, rgba(13,6,20,.95) 0%, rgba(13,6,20,.65) 65%, transparent 100%);
  transition: padding .3s ease;
}
.pf-item:hover .pf-info { padding-bottom: 22px; }

.pf-cat {
  font-size: .67rem; color: var(--pink-3); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px;
  display: flex; align-items: center; gap: 6px;
}
.pf-cat::before {
  content: ''; display: inline-block;
  width: 12px; height: 1px;
  background: var(--pink-2); flex-shrink: 0; border-radius: 2px;
}

.pf-info h3 {
  font-size: 1.08rem; font-weight: 700; margin-bottom: 10px;
  letter-spacing: -.2px;
  transition: color .2s ease;
}
.pf-item:hover .pf-info h3 { color: #fff; }

.pf-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.pf-tags span {
  font-size: .67rem; padding: 3px 9px; border-radius: 50px;
  background: rgba(244,114,182,.12); border: 1px solid rgba(244,114,182,.18);
  color: var(--pink-3);
  transition: background .2s ease, border-color .2s ease;
}
.pf-item:hover .pf-tags span { background: rgba(244,114,182,.2); border-color: rgba(244,114,182,.35); }

.pf-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 700; color: var(--pink-2);
  transition: gap .25s cubic-bezier(.22,1,.36,1), color .2s ease;
}
.pf-link svg { transition: transform .25s cubic-bezier(.22,1,.36,1); }
.pf-item:hover .pf-link { gap: 10px; color: #f0abfc; }
.pf-item:hover .pf-link svg { transform: translateX(3px); }

/* ── PROCESS ───────────────────────────────────────── */
.process { overflow: hidden; }
.process .section-orb { bottom: -100px; left: -150px; }

.process-timeline { position: relative; }
.process-line {
  position: absolute; top: 40px; left: 40px; right: 40px; height: 1px;
  background: var(--border);
  display: none;
}
.process-line-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--grad); width: 0;
  transition: width 1s ease;
}

.process-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.proc-step {
  padding: 36px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.proc-step:first-child { border-radius: var(--r-xl) 0 0 0; }
.proc-step:nth-child(3) { border-radius: 0 var(--r-xl) 0 0; }
.proc-step:nth-child(4) { border-radius: 0 0 0 var(--r-xl); }
.proc-step:last-child { border-radius: 0 0 var(--r-xl) 0; }
.proc-step::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,114,182,.07) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.proc-step::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.proc-step:hover { border-color: var(--pink-b); background: rgba(244,114,182,.04); box-shadow: inset 0 0 40px rgba(244,114,182,.04); }
.proc-step:hover::before { opacity: 1; }
.proc-step:hover::after { transform: scaleX(1); }

.proc-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  line-height: 1; letter-spacing: -2px;
  background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .3; margin-bottom: 16px;
}
.proc-icon {
  width: 40px; height: 40px;
  background: var(--pink-dim); border: 1px solid var(--pink-b);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--pink-2); margin-bottom: 16px;
  transition: transform .3s ease;
}
.proc-step:hover .proc-icon { transform: scale(1.1); }
.proc-time {
  display: inline-block; margin-bottom: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--pink-dim); border: 1px solid var(--pink-b);
  border-radius: 50px; padding: 3px 10px; color: var(--pink-3);
}
.proc-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.proc-body p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── WHY US ────────────────────────────────────────── */
.cmp-wrap {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
.cmp-col {
  padding: 36px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.cmp-col--us {
  background: linear-gradient(135deg, rgba(244,114,182,.08) 0%, rgba(168,85,247,.05) 100%);
  border-color: var(--pink-b);
}
.cmp-col--them { background: var(--card); }

.cmp-col-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.cmp-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .95rem; color: var(--text);
}
.cmp-badge {
  padding: 4px 12px; border-radius: 50px;
  background: var(--grad-cta); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.cmp-them-label {
  font-size: .85rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}

.cmp-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.cmp-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: var(--text-2); padding: 6px 0;
}
.cmp-list--them li { color: var(--muted); }
.cmp-cta { margin-top: 4px; }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials { overflow: hidden; }
.testimonials .section-orb { top: -50px; right: -100px; }

.testi-aggregate {
  text-align: center; margin-bottom: 48px;
  padding: 24px; border-radius: var(--r-lg);
  background: var(--card); border: 1px solid var(--border);
  display: inline-block; margin: 0 auto 48px;
}
.testi-agg-stars { font-size: 1.8rem; color: #fbbf24; margin-bottom: 6px; }
.testi-agg-score {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 4px;
}
.testi-agg-count { font-size: .8rem; color: var(--muted); }
.section-head + .testi-aggregate { display: block; }

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

.testi-card {
  padding: 28px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.testi-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,114,182,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.testi-card:hover { border-color: var(--pink-b); transform: translateY(-2px); }
.testi-card:hover::before { opacity: 1; }

.testi-quote {
  font-size: 4rem; line-height: .8; font-family: Georgia, serif;
  color: var(--pink); opacity: .3;
  margin-bottom: 8px; display: block;
}
.testi-stars { font-size: 1rem; color: #fbbf24; margin-bottom: 14px; }
.testi-text { font-size: .9rem; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-cta); color: #fff;
  font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 700; color: var(--text-2); }
.testi-company { font-size: .78rem; color: var(--muted); }

/* ── TECH STACK ────────────────────────────────────── */
.tech-cats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.tech-cat {
  padding: 32px 28px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.tech-cat:hover { border-color: var(--pink-b); box-shadow: 0 4px 24px rgba(244,114,182,.1); }
.tc-label {
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--pink-2);
  margin-bottom: 20px; display: block;
}
.tc-items { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tc-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: .8rem; color: var(--text-2);
  transition: border-color .2s ease, background .2s ease;
}
.tc-item:hover { border-color: var(--pink-b); background: var(--pink-dim); }
.tc-ico {
  width: 28px; height: 28px; border-radius: 6px;
  font-size: .68rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* Tech colors */
.tc-ico--html  { background: rgba(228,77,38,.15);  color: #e44d26; }
.tc-ico--css   { background: rgba(38,77,228,.15);  color: #264de4; }
.tc-ico--js    { background: rgba(247,223,30,.15); color: #f7df1e; }
.tc-ico--react { background: rgba(97,218,251,.15); color: #61dafb; }
.tc-ico--next  { background: rgba(255,255,255,.1);  color: var(--text); }
.tc-ico--php   { background: rgba(119,123,180,.15); color: #777bb4; }
.tc-ico--node  { background: rgba(104,159,56,.15);  color: #689f38; }
.tc-ico--wp    { background: rgba(33,117,155,.15);  color: #21759b; }
.tc-ico--shop  { background: rgba(149,191,71,.15);  color: #95bf47; }
.tc-ico--woo   { background: rgba(150,88,138,.15);  color: #96588a; }
.tc-ico--gads  { background: rgba(66,133,244,.15);  color: #4285f4; }
.tc-ico--meta  { background: rgba(24,119,242,.15);  color: #1877f2; }
.tc-ico--ga4   { background: rgba(255,160,0,.15);   color: #ffa000; }
.tc-ico--gsc   { background: rgba(52,168,83,.15);   color: #34a853; }
.tc-ico--hj    { background: rgba(255,63,63,.15);   color: #ff3f3f; }
.tc-ico--zap   { background: rgba(255,79,0,.15);    color: #ff4f00; }
.tc-ico--make  { background: rgba(124,77,255,.15);  color: #7c4dff; }
.tc-ico--n8n   { background: rgba(255,128,0,.15);   color: #ff8000; }
.tc-ico--ai    { background: rgba(244,114,182,.15);  color: var(--pink-2); }
.tc-ico--fig   { background: rgba(242,78,30,.12);   color: #f24e1e; }

/* ── PRICING ───────────────────────────────────────── */
.pricing { overflow: hidden; }
.pricing .section-orb { top: -80px; left: -100px; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 40px;
  align-items: stretch;
}
.price-card {
  position: relative; border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.012) 100%),
    var(--bg2, #100a18);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transition: border-color .35s ease, transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}
.price-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.price-card:hover {
  border-color: var(--pink-b);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px var(--pink-b), 0 0 60px rgba(244,114,182,.18);
}

/* POPULAR — wyróżniona, wysunięta do przodu */
.price-card--popular {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(244,114,182,.14) 0%, rgba(168,85,247,.06) 45%, rgba(255,255,255,.012) 100%),
    var(--bg2, #100a18);
  box-shadow:
    0 0 0 1.5px rgba(244,114,182,.45),
    0 28px 70px rgba(168,85,247,.22),
    0 12px 32px rgba(0,0,0,.5);
}
@media (min-width: 921px) {
  .price-card--popular { transform: scale(1.045); z-index: 2; }
  .price-card--popular:hover { transform: scale(1.045) translateY(-6px); }
}
.price-card--popular::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad); z-index: 3;
}

.price-popular-badge {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta); color: #fff;
  font-size: .64rem; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap; z-index: 4;
  box-shadow: 0 6px 20px rgba(168,85,247,.5);
  display: inline-flex; align-items: center; gap: 6px;
}
.price-popular-badge::before {
  content: '★'; font-size: .7rem; line-height: 1;
}

.price-card-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 60% at 50% 0%, rgba(244,114,182,.16) 0%, transparent 65%);
  opacity: 0; transition: opacity .35s ease;
}
.price-card:hover .price-card-glow,
.price-card--popular .price-card-glow { opacity: 1; }

.price-head {
  padding: 30px 26px 0;
  padding-top: 56px;
}
.price-card--popular .price-head { padding-top: 14px; }

.price-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--pink-dim); border: 1px solid var(--pink-b);
  color: var(--pink-2);
}
.price-icon--landing  { background: rgba(251,191,36,.09); border-color: rgba(251,191,36,.28); color: #fbbf24; }
.price-icon--starter  { background: var(--pink-dim); }
.price-icon--business { background: linear-gradient(135deg, rgba(244,114,182,.15), rgba(168,85,247,.1)); }
.price-icon--ecommerce{ background: rgba(167,139,250,.12); border-color: rgba(167,139,246,.3); color: var(--violet-2); }
.price-icon--social   { background: rgba(251,113,133,.08); border-color: rgba(251,113,133,.2); color: var(--rose); }
.price-icon--seo      { background: rgba(74,222,128,.09); border-color: rgba(74,222,128,.28); color: var(--green); }

.price-tier { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em; }
.price-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; min-height: 2.6em; }

.price-amount {
  padding: 22px 26px 0;
  display: flex; align-items: baseline; gap: 2px;
}
.price-from { font-size: .78rem; color: var(--faint); }
.price-val {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 800;
  background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: .95; letter-spacing: -.02em;
}
.price-dec { font-size: 1.1rem; font-weight: 700; vertical-align: super; line-height: 1; color: var(--muted); }
.price-cur { font-size: 1.05rem; font-weight: 700; color: var(--text-2); align-self: flex-end; margin-bottom: .4rem; }
.price-period {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 10px 26px 0; padding: .3rem .7rem;
  font-size: .72rem; color: var(--text-2);
  background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2);
  border-radius: 999px;
}
.price-period::before { content: '✓'; color: var(--green); font-weight: 800; }

.price-feats {
  padding: 22px 26px 8px; display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.price-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; line-height: 1.4; color: var(--text-2);
}
.pf-yes svg {
  color: var(--green); flex-shrink: 0; margin-top: 2px;
  background: rgba(74,222,128,.12); border-radius: 50%;
  width: 17px; height: 17px; padding: 2.5px; box-sizing: border-box;
}
.pf-all { font-size: .86rem; }
.pf-all strong { color: var(--pink-2); }
.price-card--popular .pf-all strong { color: var(--pink-2); }
.pf-no  { color: var(--faint); }
.pf-no  svg { color: var(--faint); flex-shrink: 0; }

.price-cta {
  margin: 14px 26px 10px; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-b);
  font-size: .92rem; font-weight: 700; color: var(--text);
  transition: var(--ease);
}
.price-cta:hover { background: var(--pink-dim); border-color: var(--pink-2); color: #fff; transform: translateY(-2px); }
.price-cta--pop {
  background: var(--grad-cta); color: #fff; border-color: transparent;
  box-shadow: 0 8px 24px rgba(168,85,247,.45);
}
.price-cta--pop:hover { box-shadow: 0 12px 32px rgba(168,85,247,.6); transform: translateY(-2px); color: #fff; }
.price-cta svg { transition: transform .25s ease; }
.price-cta:hover svg { transform: translateX(3px); }

.pricing-note {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 24px 28px; border-radius: var(--r-lg);
  background: var(--card); border: 1px solid var(--border);
}
.pricing-note p { font-size: .9rem; color: var(--muted); }
.pricing-note strong { color: var(--text-2); }

/* ── DFY ADDON ─────────────────────────────────────── */
.dfy-addon {
  display: flex; align-items: center; gap: .65rem; margin: 10px 26px 0;
  padding: .6rem .85rem; border-radius: 10px;
  background: rgba(168,85,247,.06); border: 1px solid rgba(168,85,247,.18);
  cursor: pointer; transition: all .18s; user-select: none;
}
.dfy-addon:hover { background: rgba(168,85,247,.1); border-color: rgba(168,85,247,.3); }
.dfy-addon:has(input:checked) { background: rgba(168,85,247,.14); border-color: rgba(168,85,247,.4); }
.dfy-addon input[type="checkbox"] { width: 15px; height: 15px; accent-color: #a855f7; flex-shrink: 0; cursor: pointer; }
.dfy-label { display: flex; flex-direction: column; gap: 1px; }
.dfy-title { font-size: .72rem; font-weight: 600; color: var(--muted); }
.dfy-addon:has(input:checked) .dfy-title { color: var(--text-2); }
.dfy-price { font-size: .65rem; color: var(--faint-text, var(--faint)); }
.dfy-addon:has(input:checked) .dfy-price { color: var(--violet-2); }

/* ── MODAL DZIEŃ MAMY ──────────────────────────────── */
.dm-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,6,20,.80);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: dm-fade-in .25s ease forwards;
}
.dm-overlay[hidden] { display: none; }
@keyframes dm-fade-in { from{opacity:0} to{opacity:1} }

.dm-box {
  position: relative;
  background: #0d1117;
  border: 1px solid rgba(192,132,252,.18);
  border-radius: 22px;
  width: 100%; max-width: 560px;
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 48px 120px rgba(0,0,0,.75), 0 0 0 1px rgba(192,132,252,.07), inset 0 1px 0 rgba(255,255,255,.04);
  animation: dm-slide-up .38s cubic-bezier(.22,1,.36,1) forwards;
  scrollbar-width: thin;
  scrollbar-color: rgba(192,132,252,.25) transparent;
}
.dm-box::-webkit-scrollbar { width: 4px; }
.dm-box::-webkit-scrollbar-thumb { background: rgba(192,132,252,.25); border-radius: 4px; }
@keyframes dm-slide-up { from{transform:translateY(32px);opacity:0} to{transform:translateY(0);opacity:1} }

/* ── Header (sticky) */
.dm-header {
  position: sticky; top: 0; z-index: 10;
  background: linear-gradient(180deg, #0d1117 85%, transparent);
  padding-bottom: 4px;
}
.dm-progress { height: 3px; background: rgba(255,255,255,.05); }
.dm-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #f472b6, #f472b6);
  width: 25%; transition: width .4s cubic-bezier(.22,1,.36,1);
}
.dm-header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px 8px;
}

/* Step dots */
.dm-steps-indicator { display: flex; align-items: center; gap: 6px; }
.dm-dot {
  display: block; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  transition: background .3s, transform .3s;
}
.dm-dot--active {
  background: linear-gradient(135deg,#f472b6,#f472b6);
  transform: scale(1.35);
}
.dm-dot--done { background: rgba(244,114,182,.45); }

/* Close button */
.dm-close {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  color: var(--muted); display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.dm-close:hover { background: rgba(255,255,255,.13); color: var(--text); }

/* ── Steps */
.dm-steps { }
.dm-step { padding: 6px 32px 36px; }
.dm-step--hidden { display: none; }

/* ── Step 1: Hero */
.dm-s1-hero {
  display: flex; justify-content: center;
  padding: 28px 0 16px;
  filter: drop-shadow(0 0 18px rgba(244,114,182,.3));
}
.dm-s1-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
  background: rgba(244,114,182,.1); border: 1px solid rgba(244,114,182,.22);
  color: #f9a8d4; font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
}
.dm-s1-title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 10px;
  color: var(--text);
}
.dm-s1-title span {
  background: linear-gradient(135deg, #f472b6, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dm-s1-sub { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }

/* Feature list */
.dm-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.dm-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--muted); line-height: 1.55; }
.dm-feat-icon {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,114,182,.15); color: #f9a8d4;
}
.dm-feats li strong { color: var(--text); font-weight: 600; }

/* Price block */
.dm-price-block {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: 14px; margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(244,114,182,.08), rgba(244,114,182,.06));
  border: 1px solid rgba(192,132,252,.18);
}
.dm-price-old { font-size: .8rem; color: var(--faint); text-decoration: line-through; display: block; margin-bottom: 4px; }
.dm-price-now { font-size: 2.4rem; font-weight: 800; color: var(--text); line-height: 1; }
.dm-price-dec { font-size: 1.2rem; font-weight: 700; vertical-align: super; color: #f472b6; }
.dm-price-cur { font-size: 1rem; font-weight: 500; color: var(--muted); }
.dm-price-note { font-size: .72rem; color: var(--faint); margin-top: 5px; display: block; }
.dm-price-badge {
  padding: 6px 14px; border-radius: 8px;
  background: linear-gradient(135deg,#f472b6,#a855f7);
  color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em;
}

/* ── Actions */
.dm-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

.dm-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 11px; width: 100%;
  background: linear-gradient(135deg,#f472b6 0%,#f9a8d4 50%,#f472b6 100%);
  background-size: 200% 100%; background-position: 0% 0%;
  color: #fff; font-weight: 700; font-size: .93rem; border: none;
  transition: background-position .4s, transform .22s, box-shadow .22s;
  box-shadow: 0 4px 20px rgba(244,114,182,.3);
}
.dm-btn-primary:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,114,182,.45);
}

.dm-btn-ghost {
  width: 100%; padding: 10px; border-radius: 10px;
  color: var(--muted); font-size: .83rem;
  transition: color .2s, background .2s; border: none;
  background: transparent; text-align: center;
}
.dm-btn-ghost:hover { color: var(--text); background: rgba(255,255,255,.04); }

/* ── Step 2: Portfolio */
.dm-step-header { margin-bottom: 20px; }
.dm-step-title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.25rem, 4vw, 1.6rem); font-weight: 700; margin-bottom: 6px; color: var(--text);
}
.dm-step-sub { font-size: .87rem; color: var(--muted); line-height: 1.6; }

.dm-pf-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.dm-pf-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07);
  transition: border-color .2s, background .2s, transform .22s;
  text-decoration: none; color: inherit; cursor: pointer;
}
.dm-pf-card:hover {
  border-color: rgba(192,132,252,.35); background: rgba(244,114,182,.06);
  transform: translateY(-1px);
}
.dm-pf-thumb {
  width: 54px; height: 54px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.dm-pf-thumb--pink { background: linear-gradient(135deg,#3b0764,#831843); }
.dm-pf-thumb--blue { background: linear-gradient(135deg,#0c1a4e,#1e3a8a); }
.dm-pf-thumb--green { background: linear-gradient(135deg,#052e16,#14532d); }
.dm-pf-body { flex: 1; min-width: 0; }
.dm-pf-tag { font-size: .68rem; color: var(--faint); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.dm-pf-name { font-size: .93rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.dm-pf-desc { font-size: .78rem; color: var(--muted); }
.dm-pf-cta {
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
  font-size: .75rem; color: var(--faint); white-space: nowrap;
  transition: color .2s;
}
.dm-pf-card:hover .dm-pf-cta { color: #f9a8d4; }

/* ── Step 3: Formularz */
.dm-form { display: flex; flex-direction: column; gap: 0; }
.dm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.dm-field label { font-size: .76rem; color: var(--text-2); font-weight: 500; letter-spacing: .03em; }
.dm-req { color: #f472b6; }
.dm-opt { font-size: .7rem; color: var(--faint); font-weight: 400; }
.dm-field input, .dm-field textarea {
  padding: 10px 13px; border-radius: 9px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: var(--text); font-size: .88rem; outline: none;
  transition: border-color .2s, background .2s;
}
.dm-field input:focus, .dm-field textarea:focus {
  border-color: rgba(192,132,252,.45); background: rgba(244,114,182,.05);
  box-shadow: 0 0 0 3px rgba(244,114,182,.1);
}
.dm-field input::placeholder, .dm-field textarea::placeholder { color: var(--faint); }
.dm-field textarea { resize: vertical; min-height: 76px; }

/* Radio style selector */
.dm-radio-group {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 2px;
}
.dm-radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.dm-radio-box {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 11px 8px; border-radius: 11px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03);
  transition: border-color .2s, background .2s;
}
.dm-radio input:checked + .dm-radio-box {
  border-color: rgba(192,132,252,.55); background: rgba(244,114,182,.09);
}
.dm-radio input:focus-visible + .dm-radio-box { outline: 2px solid #f9a8d4; outline-offset: 2px; }
.dm-radio-swatch {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
}
.dm-radio-swatch--pink  { background: linear-gradient(135deg,#f472b6,#c084fc); }
.dm-radio-swatch--blue  { background: linear-gradient(135deg,#60a5fa,#fbbf24); }
.dm-radio-swatch--green { background: linear-gradient(135deg,#4ade80,#a3e635); }
.dm-radio-swatch--warm  { background: linear-gradient(135deg,#f59e0b,#d97706); }
.dm-radio-name { font-size: .78rem; font-weight: 600; color: var(--text-2); text-align: center; }
.dm-radio-desc { font-size: .65rem; color: var(--faint); text-align: center; }

/* Tile checkboxy — "Co zawrzeć" */
.dm-tile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px;
}
.dm-tile input { position: absolute; opacity: 0; width: 0; height: 0; }
.dm-tile-box {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 8px; border-radius: 11px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03);
  transition: border-color .2s, background .2s, transform .15s;
  user-select: none;
}
.dm-tile-box:hover { background: rgba(255,255,255,.06); transform: translateY(-1px); }
.dm-tile input:checked + .dm-tile-box {
  border-color: rgba(244,114,182,.55); background: rgba(244,114,182,.09);
  box-shadow: 0 0 0 1px rgba(244,114,182,.2);
}
.dm-tile input:focus-visible + .dm-tile-box { outline: 2px solid #f9a8d4; outline-offset: 2px; }
.dm-tile-icon { font-size: 1.4rem; line-height: 1; }
.dm-tile-name { font-size: .78rem; font-weight: 600; color: var(--text-2); }
.dm-tile-desc { font-size: .65rem; color: var(--faint); }

/* Legacy checkboxy (fallback) */
.dm-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 4px; }
.dm-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: .84rem; color: var(--muted); }
.dm-check input { width: 15px; height: 15px; accent-color: #f9a8d4; flex-shrink: 0; cursor: pointer; }
.dm-check:hover span { color: var(--text); }

/* Notice bar */
.dm-notice {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 11px 14px; border-radius: 10px; margin-bottom: 16px; margin-top: 4px;
  background: rgba(244,114,182,.07); border: 1px solid rgba(244,114,182,.18);
  font-size: .8rem; color: var(--muted); line-height: 1.55;
}
.dm-notice svg { flex-shrink: 0; margin-top: 2px; color: #f9a8d4; }
.dm-notice strong { color: var(--text); }

.dm-form-error {
  padding: 10px 14px; border-radius: 8px; font-size: .82rem;
  background: rgba(239,68,68,.09); border: 1px solid rgba(239,68,68,.22);
  color: #f87171; margin-bottom: 12px;
}

/* ── Step 4: Confirmation */
.dm-confirm {
  text-align: center; padding: 32px 20px 20px;
}
.dm-confirm-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25);
  box-shadow: 0 0 28px rgba(74,222,128,.18);
}
.dm-confirm-title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.4rem,4vw,1.8rem); font-weight: 700; margin-bottom: 8px; color: var(--text);
}
.dm-confirm-sub { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.dm-confirm-sub strong { color: var(--text); }

.dm-summary {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 16px;
  font-size: .87rem; display: flex; flex-direction: column; gap: 8px;
}
.dm-summary-row { display: flex; justify-content: space-between; color: var(--muted); }
.dm-summary-row strong { color: var(--text); }
.dm-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1px solid rgba(255,255,255,.07);
  font-weight: 600; font-size: .93rem; color: var(--text);
}
.dm-summary-total span:last-child { color: #f9a8d4; font-size: 1.15rem; }

.dm-confirm-info {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 11px 14px; border-radius: 10px; margin-bottom: 20px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  font-size: .8rem; color: var(--muted); line-height: 1.55;
}
.dm-confirm-info svg { flex-shrink: 0; margin-top: 2px; color: var(--faint); }

.dm-btn-close {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 13px 22px; border-radius: 11px; border: none;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  color: var(--text-2); font-size: .9rem; font-weight: 500;
  transition: background .2s, color .2s;
}
.dm-btn-close:hover { background: rgba(255,255,255,.11); color: var(--text); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Pay box (step 4) */
.dm-pay-box {
  border-radius: 14px; border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025); margin-bottom: 22px; overflow: hidden;
}
.dm-pay-label {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .78rem; font-weight: 600; color: var(--text-2); letter-spacing: .03em;
}
.dm-pay-label svg { color: var(--muted); }

/* Stripe wrapper – fixed min-height prevents CLS */
.dm-stripe-wrap {
  padding: 16px; min-height: 120px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Spinner (loader + inline btn) */
.dm-stripe-loader {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 0; color: var(--faint); font-size: .82rem;
}
.dm-spinner {
  display: inline-block; width: 22px; height: 22px;
  border: 2.5px solid rgba(192,132,252,.2);
  border-top-color: #f9a8d4; border-radius: 50%;
  animation: dm-spin .7s linear infinite;
}
@keyframes dm-spin { to { transform: rotate(360deg); } }

/* Small spinner inside pay button */
.dm-spinner--btn { width: 16px; height: 16px; border-width: 2px; }

/* Stripe Element mounted container */
#dm-payment-element { min-height: 80px; }

/* Stripe error message */
.dm-stripe-error {
  padding: 10px 14px; border-radius: 8px; font-size: .82rem;
  background: rgba(239,68,68,.09); border: 1px solid rgba(239,68,68,.22);
  color: #f87171; margin: 8px 16px 0;
}

/* Secure badge */
.dm-pay-secure {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-top: 1px solid rgba(255,255,255,.05);
  font-size: .72rem; color: var(--faint); letter-spacing: .02em;
}
.dm-pay-secure svg { color: var(--faint); flex-shrink: 0; }

/* Secure note above stripe element */
.dm-pay-secure-note {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 14px; border-radius: 9px; margin-bottom: 12px;
  background: rgba(192,132,252,.06); border: 1px solid rgba(192,132,252,.15);
  font-size: .78rem; color: var(--muted); line-height: 1.55;
}
.dm-pay-secure-note svg { flex-shrink: 0; margin-top: 1px; color: var(--faint); }
.dm-pay-secure-note strong { color: var(--text-2); }

/* Pay button states */
.dm-btn-primary:disabled {
  opacity: .55; cursor: not-allowed;
  transform: none !important; box-shadow: none !important;
}
.dm-btn-primary[data-processing] {
  pointer-events: none; opacity: .7;
}

/* Modal lock class – applied during processing */
.dm-overlay--locked .dm-close { opacity: .25; pointer-events: none; }
.dm-overlay--locked .dm-btn-ghost { opacity: .35; pointer-events: none; }

/* Success animation */
.dm-confirm-icon { animation: dm-pop .5s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes dm-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 560px) {
  .dm-overlay { padding: 0; align-items: flex-end; }
  .dm-box {
    max-width: 100%;
    border-radius: 22px 22px 0 0;
    max-height: 92svh;
    max-height: 92vh;
  }
  .dm-step { padding: 4px 16px 32px; }
  .dm-row { grid-template-columns: 1fr; gap: 0; }

  /* Style strony — 2 kolumny, większy touch target */
  .dm-radio-group { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dm-radio-box {
    flex-direction: row; gap: 10px; align-items: center;
    padding: 14px 14px; min-height: 52px;
  }
  .dm-radio-name { font-size: .85rem; text-align: left; }
  .dm-radio-desc { font-size: .72rem; text-align: left; }
  .dm-radio-swatch { width: 18px; height: 18px; flex-shrink: 0; }

  /* Co zawrzeć — 2 kolumny, wyższe kafelki */
  .dm-tile-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dm-tile-box { padding: 16px 10px; gap: 6px; min-height: 80px; }
  .dm-tile-icon { font-size: 1.6rem; }
  .dm-tile-name { font-size: .82rem; }
  .dm-tile-desc { font-size: .68rem; }

  .dm-stripe-wrap { padding: 12px; }
  .dm-s1-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .dm-price-now { font-size: 2rem; }
  .dm-actions { margin-top: 8px; }
  .dm-btn-primary { padding: 16px 22px; font-size: 1rem; }
  .dm-pf-card { padding: 14px 12px; gap: 12px; }
  .dm-pf-thumb { width: 48px; height: 48px; }
  .dm-summary { padding: 14px; }
  .dm-step-header { margin-bottom: 16px; }
  .dm-field input, .dm-field textarea { padding: 13px 13px; font-size: .92rem; }
}

/* ── LOVE STRONA ───────────────────────────────────── */
.love-strona-wrap { margin-bottom: 24px; }

.love-strona-card {
  position: relative; border-radius: var(--r-xl);
  border: 1px solid rgba(244,114,182,.35);
  background: linear-gradient(135deg, rgba(244,114,182,.07) 0%, rgba(168,85,247,.07) 100%);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(244,114,182,.2), 0 8px 40px rgba(244,114,182,.12);
  transition: box-shadow .3s ease, transform .3s ease;
}
.love-strona-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(244,114,182,.45), 0 16px 56px rgba(244,114,182,.18);
}
.love-strona-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #f472b6, #a855f7, #f472b6);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.love-strona-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(244,114,182,.1) 0%, transparent 60%);
}

.love-strona-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 28px 28px 0;
  background: linear-gradient(135deg, rgba(244,114,182,.18), rgba(168,85,247,.15));
  border: 1px solid rgba(244,114,182,.35);
  color: #f9a8d4; font-size: .75rem; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}

.love-strona-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; padding: 24px 28px 28px; align-items: center;
}

.love-strona-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(244,114,182,.2), rgba(168,85,247,.15));
  border: 1px solid rgba(244,114,182,.3);
  color: #f472b6; margin-bottom: 14px;
}

.love-strona-name {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 800; color: var(--text);
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
}

.love-strona-desc {
  font-size: .88rem; color: var(--muted); line-height: 1.65;
  max-width: 540px; margin-bottom: 20px;
}

.love-strona-feats {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
}
.love-strona-feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: .83rem; color: var(--text-2);
}
.love-strona-feats li svg { color: #f472b6; flex-shrink: 0; }

.love-strona-right { flex-shrink: 0; }

.love-strona-pricing {
  background: rgba(10,11,24,.6); border: 1px solid rgba(244,114,182,.25);
  border-radius: var(--r-lg); padding: 28px 32px;
  text-align: center; min-width: 220px;
  backdrop-filter: blur(8px);
}

.love-strona-old {
  font-size: .82rem; color: var(--faint);
  text-decoration: line-through; margin-bottom: 6px;
}

.love-strona-price {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-bottom: 8px;
}
.love-strona-val {
  font-family: var(--font-display); font-size: 3.6rem;
  font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.love-strona-cur { font-size: 1rem; color: var(--muted); font-weight: 600; }
.love-strona-per { font-size: .75rem; color: var(--faint); font-weight: 400; display: block; }

.love-strona-saving {
  font-size: .75rem; color: #86efac;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.2);
  border-radius: 20px; padding: 4px 12px;
  display: inline-block; margin-bottom: 20px;
}

.love-strona-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 20px; border-radius: var(--r);
  background: linear-gradient(135deg, #f472b6, #a855f7);
  color: #fff; font-size: .88rem; font-weight: 700;
  text-decoration: none; border: none;
  box-shadow: 0 4px 20px rgba(244,114,182,.35);
  transition: box-shadow .25s ease, transform .25s ease;
}
.love-strona-cta:hover {
  box-shadow: 0 6px 28px rgba(244,114,182,.55);
  transform: translateY(-1px);
}

.love-strona-note {
  font-size: .72rem; color: var(--faint);
  margin-top: 12px; text-align: center;
}

@media (max-width: 900px) {
  .love-strona-inner { grid-template-columns: 1fr; }
  .love-strona-right { width: 100%; }
  .love-strona-pricing { min-width: unset; }
}

@media (max-width: 480px) {
  .love-strona-badge { margin: 20px 16px 0; font-size: .7rem; }
  .love-strona-inner { padding: 16px 16px 20px; gap: 20px; }
  .love-strona-pricing { padding: 20px 16px; }
  .love-strona-val { font-size: 2.8rem; }
  .love-strona-name { font-size: 1.35rem; }
  .love-strona-desc { font-size: .82rem; }
}

/* ── REACTIONS ─────────────────────────────────────── */
.reactions { overflow: hidden; }
.reactions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.reaction-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .25s, transform .25s;
}
.reaction-card:hover { border-color: var(--pink-b); transform: translateY(-4px); }
.reaction-card--cta {
  background: linear-gradient(135deg, rgba(244,114,182,.06) 0%, rgba(168,85,247,.06) 100%);
  border-color: rgba(244,114,182,.2);
}
.rc-icon { color: var(--pink-2); margin-bottom: .25rem; }
.rc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.rc-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.rc-btn { align-self: flex-start; margin-top: .5rem; }
.rc-quote {
  font-size: .95rem; color: var(--text-2); line-height: 1.7; font-style: italic;
  position: relative; padding-left: 1.2rem;
}
.rc-quote::before { content: '"'; position: absolute; left: 0; top: -.15em; font-size: 1.8rem; color: var(--pink); font-style: normal; line-height: 1; }
.rc-author { font-size: .78rem; font-weight: 600; color: var(--muted); }

/* ── FAQ ───────────────────────────────────────────── */
.faq-grid { display: block; max-width: 800px; margin: 0 auto; }

.faq-list {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  counter-reset: faq-n;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  position: relative;
  counter-increment: faq-n;
  transition: background .25s ease;
}
.faq-item:last-of-type { border-bottom: none; }
.faq-item.is-open { background: rgba(244,114,182,.04); }
.faq-item.is-open::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad);
  border-radius: 0 3px 3px 0;
}

.faq-q {
  display: flex; align-items: center; gap: 16px;
  width: 100%; padding: 22px 24px;
  font-size: .95rem; font-weight: 600; color: var(--text-2);
  text-align: left;
  transition: color .2s ease;
}
.faq-q::before {
  content: counter(faq-n, decimal-leading-zero);
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  color: var(--pink-2); opacity: .5;
  flex-shrink: 0; min-width: 24px;
  transition: opacity .2s ease;
}
.faq-q span { flex: 1; }
.faq-q:hover { color: var(--text); }
.faq-q:hover::before { opacity: .9; }
.faq-item.is-open .faq-q { color: var(--text); }
.faq-item.is-open .faq-q::before { opacity: 1; }

.faq-icon {
  flex-shrink: 0; color: var(--muted);
  transition: transform .35s cubic-bezier(.22,1,.36,1), color .2s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); color: var(--pink-2); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .3s ease;
}
.faq-a.open { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: .9rem; color: var(--muted); line-height: 1.75; padding: 0 24px 0 64px; }

.faq-cta-card {
  padding: 28px 24px; border-radius: 0;
  background: linear-gradient(135deg, rgba(244,114,182,.07) 0%, rgba(168,85,247,.04) 100%);
  border-top: 1px solid var(--pink-b);
  text-align: center;
}
.faq-cta-card p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }

/* ── CONTACT ───────────────────────────────────────── */
.contact { overflow: hidden; }
.contact .section-orb--large {
  width: 800px; height: 800px;
  top: -200px; right: -300px;
}

.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }

.contact-details { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; }
.cdetail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--r);
  border: 1px solid var(--border); background: var(--card);
  transition: border-color .2s ease, background .2s ease;
  color: inherit;
}
a.cdetail:hover { border-color: var(--pink-b); background: var(--pink-dim); }
.cdetail-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--pink-dim); border: 1px solid var(--pink-b);
  display: flex; align-items: center; justify-content: center; color: var(--pink-2);
}
.cdetail-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--faint); }
.cdetail-val { font-size: .9rem; font-weight: 600; color: var(--text-2); }

.contact-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  background: var(--card); border: 1px solid var(--border);
  font-size: .82rem; color: var(--muted);
  transition: var(--ease);
}
.social-link:hover { border-color: var(--pink-b); color: var(--pink-2); background: var(--pink-dim); }

/* Form */
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }

label { font-size: .82rem; font-weight: 600; color: var(--muted); }
label span { color: var(--pink-2); }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  padding: 12px 16px; border-radius: var(--r);
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); font-size: .9rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .12s ease;
  outline: none; min-height: 44px;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 12px 16px; border-radius: var(--r);
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); font-size: .9rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .12s ease;
  outline: none; min-height: 44px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--pink-b);
  box-shadow: 0 0 0 4px rgba(244,114,182,.10);
  transform: translateY(-1px);
}

input::placeholder, textarea::placeholder { color: var(--faint); }

/* Select – base */
select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer; position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7698' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 44px; /* pomieści strzałkę */
  -ms-expand: display: none; /* IE */
}

/* Variants */
.select--sm, select.select--sm { padding: 8px 12px; font-size: .85rem; min-height: 36px; }
.select--lg, select.select--lg { padding: 14px 18px; font-size: 1rem; min-height: 52px; }

/* Disabled state */
select:disabled {
  opacity: .5; cursor: not-allowed; border-color: rgba(255,255,255,.03);
  background: linear-gradient(0deg, rgba(255,255,255,.01), rgba(255,255,255,.01));
}

/* Options */
select option { background: var(--bg3); color: var(--text); }

/* Small accessibility tweaks */
select:focus-visible { outline: 3px solid rgba(244,114,182,.12); outline-offset: 2px; }

/* If using a wrapper for custom visuals */
.select-wrap { position: relative; display: inline-block; width: 100%; }
.select-wrap::after {
  content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7698' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: 14px 14px;
}

textarea { resize: vertical; line-height: 1.65; }

.form-err { font-size: .75rem; color: #f87171; display: none; }
.form-group.error .form-err { display: block; }
.form-group.error input, .form-group.error textarea { border-color: #f87171; }
.form-group.error input[type="checkbox"] { border-color: #f87171 !important; }

/* Consent checkbox */
.form-check-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: .82rem; color: var(--muted); font-weight: 400; line-height: 1.5;
}
.form-check-label a { color: var(--pink-2); text-decoration: underline; }
input[type="checkbox"].form-check {
  width: 18px; height: 18px; min-width: 18px; padding: 0; min-height: 18px;
  appearance: none; -webkit-appearance: none;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 4px; cursor: pointer; flex-shrink: 0; margin-top: 2px;
  transition: background .15s, border-color .15s;
}
input[type="checkbox"].form-check:checked {
  background: var(--pink-b); border-color: var(--pink-b);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
input[type="checkbox"].form-check:focus { box-shadow: 0 0 0 3px rgba(244,114,182,.18); outline: none; }

.btn-submit {
  width: 100%; justify-content: center; margin-top: 20px;
  position: relative;
}
.btn-spinner {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.loading .btn-text { opacity: 0; }
.btn-submit.loading .btn-spinner { display: block; position: absolute; }
.btn-submit.loading .btn-arr { opacity: 0; }

.form-success, .form-error-msg {
  display: none; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: var(--r);
  font-size: .88rem; margin-top: 16px;
}
.form-success:not([hidden]), .form-error-msg:not([hidden]) { display: flex; }
.form-success { background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25); color: var(--green); }
.form-error-msg { background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.25); color: #f87171; }
.form-error-msg a { color: var(--pink-2); text-decoration: underline; }

.form-note { font-size: .75rem; color: var(--faint); text-align: center; margin-top: 14px; }

/* ── FOOTER (redesigned) ───────────────────────────── */
.footer {
  position: relative; z-index: 2;
  background: var(--bg2);
}

/* ── Footer CTA band ── */
.footer-cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(244,114,182,.12) 0%, rgba(168,85,247,.08) 50%, rgba(244,114,182,.06) 100%);
  border-top: 1px solid var(--pink-b);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
}
.footer-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(244,114,182,.10) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
  max-width: 640px; margin: 0 auto;
}
.footer-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -.5px;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.footer-cta-text p {
  font-size: .95rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.footer-cta-text p::before,
.footer-cta-text p::after { content: ''; display: none; }
.footer-cta-badges {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
}
.footer-cta-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 50px;
  background: var(--card); border: 1px solid var(--border);
  font-size: .78rem; color: var(--muted);
}
.footer-cta-badge svg { color: var(--green); flex-shrink: 0; }

/* ── Footer main ── */
.footer-main { padding: 64px 0 0; }

.footer-top {
  display: grid; grid-template-columns: 1.3fr 2fr;
  gap: 80px; padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-tagline {
  font-size: .875rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 16px; max-width: 260px;
}
.footer-legal {
  font-size: .7rem; color: var(--faint); line-height: 1.9;
  padding: 12px 14px; border-radius: var(--r);
  background: var(--card); border: 1px solid var(--border);
  margin-bottom: 0;
}

/* Social pill buttons */
.footer-social-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.footer-soc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 50px;
  background: var(--card); border: 1px solid var(--border);
  font-size: .75rem; color: var(--muted);
  transition: var(--ease);
}
.footer-soc-btn:hover { border-color: var(--pink-b); color: var(--pink-2); background: var(--pink-dim); }
.footer-soc-btn svg { flex-shrink: 0; }

/* Nav columns */
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.footer-col { display: flex; flex-direction: column; gap: 2px; }
.footer-col strong {
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--pink-2);
  margin-bottom: 16px; display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col a {
  font-size: .84rem; color: var(--muted);
  padding: 5px 0; transition: color .2s ease, padding-left .2s ease;
  display: block;
}
.footer-col a:hover { color: var(--text); padding-left: 4px; }

/* Bottom bar */
.footer-bottom {
  padding: 20px 0 36px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .77rem; color: var(--faint); }
.footer-socials { display: flex; gap: 6px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  background: var(--card); border: 1px solid var(--border);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.footer-socials a:hover { color: var(--pink-2); background: var(--pink-dim); border-color: var(--pink-b); }

/* ── FLOATING CTA ──────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  transform: translateY(120px); opacity: 0;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  pointer-events: none;
}
.floating-cta.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.floating-cta.hidden { display: none; }

.fcta-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px 14px 20px;
  background: rgba(8,11,34,.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--pink-b);
  border-radius: 16px;
  box-shadow: var(--shadow-glow);
  max-width: 360px;
}
.fcta-text { flex: 1; }
.fcta-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.fcta-text span { font-size: .75rem; color: var(--muted); }
.fcta-btn { white-space: nowrap; flex-shrink: 0; padding: 10px 18px !important; font-size: .82rem !important; }
.fcta-close {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--faint); border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}
.fcta-close:hover { color: var(--text); background: var(--card); }

/* ── BACK TO TOP ───────────────────────────────────── */
.back-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transform: translateY(80px); opacity: 0;
  transition: var(--ease), transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  pointer-events: none;
}
.back-top.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--pink-dim); border-color: var(--pink-b); color: var(--pink-2); }

/* ── WHATSAPP ──────────────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 76px; left: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 12px;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: var(--ease);
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.5); }

/* ── CHATBOT WIDGET ────────────────────────────────── */
.dxt-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  font-family: var(--font);
}

/* Bubble trigger button */
.dxt-bubble-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 28px rgba(244,114,182,.45), 0 2px 8px rgba(0,0,0,.35);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
  color: #fff;
}
.dxt-bubble-btn:hover {
  transform: scale(1.09);
  box-shadow: 0 12px 36px rgba(244,114,182,.6), 0 2px 8px rgba(0,0,0,.35);
}
.dxt-bubble-btn.active { transform: scale(1.04); }

.dxt-bubble-icon {
  position: absolute;
  transition: opacity .2s ease, transform .2s ease;
}
.dxt-bubble-icon--chat  { opacity: 1;  transform: scale(1) rotate(0deg); }
.dxt-bubble-icon--close { opacity: 0;  transform: scale(.6) rotate(-90deg); }

.dxt-bubble-btn.active .dxt-bubble-icon--chat  { opacity: 0;  transform: scale(.6) rotate(90deg); }
.dxt-bubble-btn.active .dxt-bubble-icon--close { opacity: 1;  transform: scale(1) rotate(0deg); }

/* Unread badge */
.dxt-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #f87171;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .2s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.dxt-badge.show { opacity: 1; transform: scale(1); }

/* Pulse ring on bubble when badge is shown */
.dxt-bubble-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(244,114,182,.5);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.dxt-bubble-btn:not(.active):has(~ * .dxt-badge.show)::after,
.dxt-badge.show ~ .dxt-bubble-btn::after { opacity: 1; transform: scale(1.15); }

/* Panel */
.dxt-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 370px;
  height: 520px;
  border-radius: 20px;
  background: rgba(5,7,26,.96);
  border: 1px solid rgba(244,114,182,.2);
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(244,114,182,.08);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  pointer-events: none;
  transition: opacity .28s cubic-bezier(.22,1,.36,1), transform .28s cubic-bezier(.22,1,.36,1);
}
.dxt-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.dxt-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(244,114,182,.12);
  background: linear-gradient(135deg, rgba(244,114,182,.12) 0%, rgba(168,85,247,.08) 100%);
  flex-shrink: 0;
}

.dxt-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  color: #fff;
  letter-spacing: .03em;
  flex-shrink: 0;
  position: relative;
}

.dxt-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid rgba(5,7,26,.96);
}

.dxt-header-info {
  flex: 1;
  min-width: 0;
}
.dxt-header-info strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.dxt-header-info span {
  font-size: .72rem;
  color: var(--muted);
}

.dxt-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(244,114,182,.15);
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  flex-shrink: 0;
}
.dxt-close-btn:hover { color: var(--text); background: var(--card); border-color: var(--pink-b); }

/* Messages area */
.dxt-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overscroll-behavior: contain;
}
.dxt-messages::-webkit-scrollbar { width: 4px; }
.dxt-messages::-webkit-scrollbar-track { background: transparent; }
.dxt-messages::-webkit-scrollbar-thumb { background: rgba(244,114,182,.25); border-radius: 4px; }

/* Message rows */
.dxt-msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
  gap: 3px;
}
.dxt-msg--bot  { align-self: flex-start; }
.dxt-msg--user { align-self: flex-end; align-items: flex-end; }

/* Message bubbles */
.dxt-bubble-msg {
  padding: 10px 13px;
  border-radius: 16px;
  font-size: .83rem;
  line-height: 1.55;
  color: var(--text);
  word-break: break-word;
}
.dxt-msg--bot .dxt-bubble-msg {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(244,114,182,.13);
  border-bottom-left-radius: 5px;
}
.dxt-msg--user .dxt-bubble-msg {
  background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
  border: none;
  border-bottom-right-radius: 5px;
  color: #fff;
}

/* Timestamps */
.dxt-ts {
  font-size: .67rem;
  color: var(--muted);
  padding: 0 4px;
}

/* Quick reply chips */
.dxt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 6px 0 4px;
  align-self: flex-start;
}
.dxt-chip {
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(244,114,182,.35);
  background: rgba(244,114,182,.08);
  color: var(--pink-2);
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .15s;
  line-height: 1.3;
}
.dxt-chip:hover {
  background: rgba(244,114,182,.18);
  border-color: rgba(244,114,182,.6);
  color: #fff;
  transform: translateY(-1px);
}
.dxt-chip:active { transform: translateY(0); }

/* Typing indicator */
.dxt-typing {
  display: none;
}
.dxt-typing.show {
  display: flex;
}
.dxt-typing .dxt-bubble-msg {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 14px;
}
.dxt-typing .dxt-bubble-msg span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-2);
  animation: dxtBounce 1.2s infinite ease-in-out;
}
.dxt-typing .dxt-bubble-msg span:nth-child(2) { animation-delay: .18s; }
.dxt-typing .dxt-bubble-msg span:nth-child(3) { animation-delay: .36s; }

@keyframes dxtBounce {
  0%, 80%, 100% { transform: translateY(0);    opacity: .5; }
  40%            { transform: translateY(-6px); opacity: 1;  }
}

/* Input footer */
.dxt-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(244,114,182,.12);
  background: rgba(255,255,255,.02);
  flex-shrink: 0;
}

.dxt-input {
  flex: 1;
  padding: 9px 13px;
  border-radius: 22px;
  border: 1px solid rgba(244,114,182,.2);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-family: var(--font);
  font-size: .83rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.dxt-input::placeholder { color: var(--muted); }
.dxt-input:focus { border-color: rgba(244,114,182,.5); background: rgba(244,114,182,.07); }

.dxt-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 3px 10px rgba(244,114,182,.4);
}
.dxt-send:hover { transform: scale(1.08); box-shadow: 0 5px 16px rgba(244,114,182,.55); }
.dxt-send:active { transform: scale(.96); }

/* Adjust floating CTA so it doesn't overlap chatbot bubble */
.floating-cta { right: 90px; }

/* ── GSAP INITIAL STATES (set via JS, not CSS) ─────── */
/* opacity is set by gsap.set() in script.js — nothing here */

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .cs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .ham { display: flex; }
  .nav-actions { margin-left: auto; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 280px; }
  .avis-main { right: 0; }
  .avis-badge, .avis-score { display: none; }

  .svc-grid { grid-template-columns: 1fr 1fr; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-card--featured { min-height: 340px; }
  .pf-grid { grid-template-columns: repeat(2,1fr); }

  .process-grid { grid-template-columns: repeat(2,1fr); }
  .proc-step:first-child { border-radius: var(--r-lg) 0 0 0; }
  .proc-step:nth-child(3) { border-radius: 0; }
  .proc-step:nth-child(4) { border-radius: 0; }
  .proc-step:last-child { border-radius: 0 0 var(--r-lg) 0; }

  .cmp-wrap { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .tech-cats { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .footer-cta-band { padding: 40px 0; }
}


@media (max-width: 640px) {
  /* ── Hero ── */
  .hero { padding: 100px 20px 72px; }
  .hero-eyebrow { font-size: .72rem; padding: 6px 14px; margin-bottom: 28px; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.8rem); letter-spacing: -1px; }
  .hero-desc { font-size: 1rem; }
  .hero-desc br { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-proof { gap: 10px; }
  .proof-sep { display: none; }
  .hero-scroll-hint { display: none; }

  /* ── Layout ── */
  section { padding: 72px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* ── Typography — center section headers on mobile ── */
  .section-head { text-align: center; }
  .section-head .section-label { justify-content: center; }
  .section-head .section-sub { max-width: 100%; margin: 0 auto; }

  /* ── Trust bar — 2-col grid (clean, aligned) ── */
  .trust-bar { padding: 0; }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
  }
  .trust-sep { display: none; }
  .trust-stat {
    padding: 18px 8px;
    border: 1px solid rgba(244,114,182,.1);
    margin: -0.5px;
  }
  /* Last stat (5th, child 9 in DOM) spans full width */
  .trust-inner > div:nth-child(9) { grid-column: 1 / -1; }

  /* ── Case studies — auto height + padding-top dla badge'a ── */
  .cs-card { min-height: 0 !important; height: auto; justify-content: flex-start; }
  .cs-card--featured { min-height: 0 !important; }
  .cs-bg { position: relative; height: 180px; flex-shrink: 0; }
  .cs-num { display: none; }
  .cs-content {
    position: relative; z-index: 2;
    padding: 20px 18px 24px;
    background: var(--card);
  }
  .cs-badge { position: absolute; top: 12px; left: 12px; }
  .cs-cat { margin-bottom: 6px; }
  .cs-card:hover .cs-content { padding-bottom: 24px; }
  .portfolio-head { margin-top: 36px; flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ── Grids ── */
  .svc-grid { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-item { min-height: 200px; }
  .process-grid { grid-template-columns: 1fr; }
  .proc-step:first-child, .proc-step:nth-child(3),
  .proc-step:nth-child(4), .proc-step:last-child { border-radius: 0; }
  .proc-step:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .proc-step:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg); }

  .testi-grid { grid-template-columns: 1fr; }
  .tech-cats { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Footer mobile ── */
  .footer-cta-band { padding: 36px 0; }
  .footer-cta-text h3 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .footer-cta-text p { font-size: .82rem; }
  .footer-cta-badges { display: none; }

  .footer-main { padding: 36px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-tagline { max-width: 100%; margin-bottom: 10px; font-size: .84rem; }
  .footer-legal { font-size: .67rem; padding: 10px 12px; }
  .footer-social-row { display: none; }

  /* Nav — 1 kolumna, linki w 2-col wewnątrz każdej sekcji */
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
  .footer-col {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .footer-col strong {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: none;
    font-size: .65rem;
  }
  .footer-col a {
    flex: 0 0 50%;
    padding: 4px 0;
    font-size: .82rem;
    transform: none !important;
    padding-left: 0 !important;
  }

  /* Bottom bar */
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 20px 0 28px;
    gap: 14px;
  }
  .footer-socials a { width: 40px; height: 40px; border-radius: 10px; }

  /* ── Floating CTA — kompaktowy floating card ── */
  .floating-cta { left: 12px; right: 12px; bottom: 84px; }
  .fcta-inner {
    border-radius: 16px;
    padding: 10px 12px 10px 16px;
    gap: 10px;
    max-width: 100%;
  }
  .fcta-text strong { font-size: .8rem; }
  .fcta-text span { display: none; }
  .fcta-btn { padding: 9px 16px !important; font-size: .8rem !important; }

  /* ── Back-top i WA nad floating card ── */
  .back-top { left: 16px; bottom: 88px; }
  .wa-btn { left: 16px; bottom: 140px; }

  /* ── Chatbot mobile ── */
  .dxt-chat { right: 16px; bottom: 16px; }
  .dxt-panel { width: calc(100vw - 32px); right: 0; bottom: 70px; height: 480px; }
  .floating-cta { right: 12px; }

  .nav { margin: 10px 12px; }
  .nav-cta { display: none !important; }
}

@media (max-width: 400px) {
  .hero-tags { display: none; }
  .cs-metrics { gap: 12px; }
}

/* ── REDUCED MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  #particles-canvas { display: none; }
  .hero-aurora { animation: none; }
  [data-gsap] { opacity: 1 !important; transform: none !important; }
  [data-gsap="stagger"] > * { opacity: 1 !important; transform: none !important; }
  .cs-card, .testi-card, .proc-step, .price-card, .svc-card, .pf-item, .about-item { opacity: 1 !important; }
}

/* ── FOCUS VISIBLE ─────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--pink-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -- BLOG PREVIEW ------------------------------------------------- */
.blog-preview { padding: 100px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s, background .25s, transform .25s;
}
.blog-card:hover {
  border-color: var(--pink-b);
  background: var(--card-h);
  transform: translateY(-3px);
}
.blog-card-meta { display: flex; align-items: center; gap: 12px; }
.blog-cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-2);
  background: var(--pink-dim);
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-date { font-size: .78rem; color: var(--muted); }
.blog-card-title { font-size: 1.15rem; font-weight: 600; line-height: 1.4; color: var(--text); }
.blog-card-title a { color: inherit; text-decoration: none; transition: color .2s; }
.blog-card-title a:hover { color: var(--pink-2); }
.blog-card-desc { font-size: .9rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--pink-2);
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.blog-card-link:hover { gap: 10px; color: var(--pink-3); }
.blog-cta { margin-top: 40px; text-align: center; }
@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* -- SVC BTNS WRAPPER --------------------------------------------- */
.svc-btns { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.svc-btn-sec {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 500; color: var(--text-2);
  text-decoration: none;
  transition: color .2s ease;
}
.svc-btn-sec:hover { color: var(--pink-2); }

/* ════════════════════════════════════════════════════
   PAYMENT MODAL — LovePage by DigiTexa
════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn .2s ease;
}
@keyframes modalFadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
.modal-overlay[hidden] { display:none !important; }

.modal-box {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border-b);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: modalSlideUp .25s cubic-bezier(.22,1,.36,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(168,85,247,.3) transparent;
}
@keyframes modalSlideUp {
  from { transform: translateY(24px) scale(.97); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--text-2);
  font-size: 1.3rem;
  line-height: 32px;
  text-align: center;
  transition: background .2s, color .2s;
  cursor: pointer;
  border: none;
}
.modal-close:hover { background: var(--pink-dim); color: var(--pink); }

.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}
.modal-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--pink-dim);
  border: 1px solid var(--pink-b);
  display: flex; align-items: center; justify-content: center;
}
.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.modal-subtitle {
  font-size: .9rem;
  color: var(--text-2);
  margin: 0;
}

.modal-step { }
.modal-step[hidden] { display:none !important; }

/* Modal form rows */
.modal-box .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.modal-box .form-row label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
}
.modal-box .form-row input,
.modal-box .form-row select,
.modal-box .form-row textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 11px 14px;
  font-size: .9rem;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.modal-box .form-row input:focus,
.modal-box .form-row select:focus,
.modal-box .form-row textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(244,114,182,.06);
}
.modal-box .form-row input::placeholder,
.modal-box .form-row textarea::placeholder { color: var(--muted); }
.modal-box .form-row select option { background: var(--bg3); }
.modal-box .form-row textarea { resize: vertical; min-height: 80px; }

/* Full-width button */
.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Form messages */
.form-msg {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  margin-top: 12px;
}
.form-msg--error {
  background: rgba(248,113,113,.10);
  border: 1px solid rgba(248,113,113,.25);
  color: #fca5a5;
}
.form-msg[hidden] { display:none !important; }

/* Stripe loading spinner */
.stripe-loading[hidden] { display: none !important; }
.stripe-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 0;
  color: var(--text-2);
  font-size: .9rem;
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(244,114,182,.2);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#payment-element-wrap[hidden] { display:none !important; }
#payment-element { margin-bottom: 20px; }

/* Success step */
.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 20px 0 8px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.25);
  display: flex; align-items: center; justify-content: center;
}
.modal-success h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-success p {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 340px;
}
.success-email {
  font-size: .85rem !important;
  color: var(--muted) !important;
}

@media (max-width: 520px) {
  .modal-box { padding: 28px 20px; }
  .modal-header h2 { font-size: 1.3rem; }
}

/* ══════════════════════════════════════════════════════════
   OCCASIONS — Dla kogo
══════════════════════════════════════════════════════════ */
.occasions {
  padding: 6rem 0;
  position: relative;
}
.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.occ-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.occ-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,114,182,.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.occ-card:hover { border-color: var(--border-b); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.occ-card:hover::before { opacity: 1; }
.occ-card--accent::before { background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,.08) 0%, transparent 70%); }
.occ-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.occ-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: .5rem;
}
.occ-card p {
  font-size: .875rem;
  color: var(--txt-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.occ-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.occ-tags li {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--pink-2);
  background: var(--pink-dim);
  border: 1px solid var(--pink-b);
  border-radius: 99px;
  padding: .18rem .65rem;
}
@media (max-width: 1024px) { .occ-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .occ-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   KREATOR SHOWCASE
══════════════════════════════════════════════════════════ */
.kreator-showcase {
  padding: 6rem 0;
  position: relative;
}
.ks-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.ks-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ks-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: default;
  transition: background .2s, border-color .2s;
}
.ks-feat--active,
.ks-feat:hover {
  background: rgba(244,114,182,.06);
  border-color: var(--pink-b);
}
.ks-feat-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--pink-dim);
  border: 1px solid var(--pink-b);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-2);
  margin-top: .1rem;
}
.ks-feat h3 {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: .25rem;
}
.ks-feat p {
  font-size: .82rem;
  color: var(--txt-muted);
  line-height: 1.6;
}
.ks-demo-btn {
  margin-top: .75rem;
  align-self: flex-start;
}

/* Browser mockup */
.ks-mockup { perspective: 1200px; }
.ks-browser {
  background: #120819;
  border: 1px solid rgba(168,85,247,.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(168,85,247,.1);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}
.ks-browser:hover { transform: rotateY(0) rotateX(0); }
.ks-browser-bar {
  background: #1a0c25;
  padding: .55rem .8rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  border-bottom: 1px solid rgba(168,85,247,.12);
}
.ks-browser-dots { display: flex; gap: .35rem; }
.ks-browser-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.12); }
.ks-browser-dots span:first-child { background: #f87171; }
.ks-browser-dots span:nth-child(2) { background: #fbbf24; }
.ks-browser-dots span:nth-child(3) { background: #4ade80; }
.ks-browser-url {
  flex: 1;
  background: rgba(255,255,255,.05);
  border-radius: 6px;
  padding: .25rem .6rem;
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  font-family: monospace;
  text-align: center;
}
.ks-browser-content { display: flex; height: 280px; }
.ks-editor-col {
  width: 42%;
  border-right: 1px solid rgba(168,85,247,.1);
  padding: .7rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  overflow: hidden;
}
.ks-tab-row { display: flex; gap: .3rem; }
.ks-tab {
  font-size: .55rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: 6px;
  color: rgba(255,255,255,.3);
  cursor: default;
}
.ks-tab--active { background: rgba(244,114,182,.15); color: #f9a8d4; }
.ks-tpl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; }
.ks-tpl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 7px;
  padding: .35rem .45rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .55rem;
  color: rgba(255,255,255,.4);
}
.ks-tpl--active { border-color: rgba(244,114,182,.4); color: #f9a8d4; background: rgba(244,114,182,.08); }
.ks-tpl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ks-section-list { display: flex; flex-direction: column; gap: .25rem; margin-top: .2rem; }
.ks-section-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .55rem;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  padding: .3rem .45rem;
}
.ks-section--on { color: rgba(255,255,255,.6); }
.ks-section-drag { opacity: .3; font-size: .5rem; }
.ks-tog {
  margin-left: auto;
  width: 22px; height: 12px;
  background: rgba(244,114,182,.7);
  border-radius: 99px;
  flex-shrink: 0;
}
.ks-tog--off { background: rgba(255,255,255,.1); }
.ks-preview-col {
  flex: 1;
  background: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1rem;
}
.ks-preview-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,45,107,.12) 0%, transparent 65%);
}
.ks-preview-hero { text-align: center; position: relative; z-index: 1; }
.ks-preview-names {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0e6d3;
  line-height: 1.1;
  letter-spacing: -1px;
}
.ks-preview-names span { color: #ff2d6b; font-style: italic; }
.ks-preview-date {
  font-size: .5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,230,211,.4);
  margin-top: .35rem;
}
.ks-preview-hearts {
  margin-top: 1rem;
  display: flex;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,45,107,.5);
  position: relative;
  z-index: 1;
  animation: ks-float 3s ease-in-out infinite;
}
.ks-preview-hearts span:nth-child(2) { animation-delay: .4s; opacity: .7; font-size: .65rem; margin-top: .2rem; }
.ks-preview-hearts span:nth-child(3) { animation-delay: .8s; opacity: .45; font-size: .5rem; margin-top: .4rem; }
@keyframes ks-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

@media (max-width: 1024px) {
  .ks-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ks-mockup { display: none; }
}
@media (max-width: 600px) {
  .ks-feat { padding: .75rem 1rem; }
}

/* ── CRO / UX IMPROVEMENTS ─────────────────────────── */

/* Hero — main CTA pulse */
.hero-main-cta {
  animation: cta-pulse 2.8s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,114,182,.0), var(--shadow-lift); }
  50%       { box-shadow: 0 0 0 10px rgba(244,114,182,.18), var(--shadow-lift); }
}

/* Hero tags — simplified */
.hero-tag {
  font-size: .78rem;
  padding: .35rem .75rem;
}

/* Process — emoji icons */
.proc-icon--emoji {
  font-size: 1.6rem;
  line-height: 1;
  background: none;
  border: none;
  box-shadow: none;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Process — bottom hint */
.process-cta-hint {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .9rem;
  color: var(--muted);
}
.process-cta-hint a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Pricing — social proof above cards */
.pricing-social-proof {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  background: rgba(244,114,182,.08);
  border: 1px solid rgba(244,114,182,.18);
  border-radius: 999px;
  padding: .4rem 1.1rem;
  font-size: .85rem;
  color: var(--text-2);
}
.pricing-social-proof span:first-child {
  color: #fbbf24;
  letter-spacing: 1px;
}

/* Pricing — for whom badge */
.price-for-whom {
  position: absolute; top: 18px; left: 22px;
  font-size: .7rem; font-weight: 600; letter-spacing: .2px;
  color: var(--pink-2);
  padding: .35rem .8rem;
  background: rgba(244,114,182,.1);
  border: 1px solid rgba(244,114,182,.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  z-index: 2;
}
.price-card--popular .price-for-whom { top: auto; position: static; margin: 56px 26px 0; align-self: flex-start; }
.price-for-whom svg { flex-shrink: 0; opacity: .85; }

/* Pricing — CTA note below button */
.price-cta-note {
  text-align: center;
  font-size: .74rem;
  color: var(--muted);
  margin: 0 26px 26px;
  padding-top: 2px;
}

/* Modal — steps hint */
.modal-steps-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: .75rem;
}
.modal-step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--muted);
  font-weight: 600;
}
.modal-step-dot--active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}
.modal-step-line {
  flex: 1;
  max-width: 32px;
  height: 1px;
  background: var(--border);
}

/* Modal icon emoji */
.modal-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .25rem;
}

/* Modal trust row */
.modal-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: .85rem;
  font-size: .72rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.modal-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

@media (max-width: 480px) {
  .pricing-social-proof { font-size: .75rem; padding: .35rem .85rem; }
  .modal-trust-row { gap: .75rem; font-size: .68rem; }
  .process-cta-hint { font-size: .82rem; }
}

/* ── STICKY CTA BAR ─────────────────────────────────── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(13,6,20,0) 0%, rgba(13,6,20,.92) 28%);
}
.sticky-cta.show { transform: translateY(0); pointer-events: auto; }
.sticky-cta-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(20,10,30,.96);
  border: 1px solid var(--border-b);
  border-radius: 16px;
  padding: 12px 14px 12px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(244,114,182,.12);
  backdrop-filter: blur(14px);
}
.sticky-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sticky-cta-stars { color: #fbbf24; font-size: .72rem; letter-spacing: 1px; line-height: 1; }
.sticky-cta-main { font-weight: 700; font-size: .98rem; color: var(--text); line-height: 1.2; }
.sticky-cta-sub { font-size: .74rem; color: var(--muted); line-height: 1.2; }
.sticky-cta-btn {
  flex-shrink: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--grad-cta); color: #fff; border: none;
  padding: 13px 22px; border-radius: 50px;
  font-family: var(--font); font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 20px rgba(236,72,153,.45);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: stickyPulse 2.6s ease-in-out infinite;
}
.sticky-cta-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 28px rgba(236,72,153,.6); }
@keyframes stickyPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(236,72,153,.45); }
  50%     { box-shadow: 0 6px 28px rgba(236,72,153,.75); }
}
/* lift WhatsApp button so it doesn't collide with the bar */
.sticky-cta.show ~ .wa-btn { bottom: 150px; }

@media (max-width: 560px) {
  .sticky-cta-inner { padding: 10px 10px 10px 16px; gap: 10px; }
  .sticky-cta-main { font-size: .88rem; }
  .sticky-cta-sub { font-size: .68rem; }
  .sticky-cta-btn { padding: 12px 16px; font-size: .88rem; }
  .sticky-cta.show ~ .wa-btn { bottom: 132px; }
}
@media (max-width: 380px) {
  .sticky-cta-sub { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta-btn { animation: none; }
}

/* ── PRICING RISK-REVERSAL / GUARANTEE ROW ──────────── */
.pricing-guarantees {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 12px; margin: 2.5rem auto 0; max-width: 920px;
}
.pg-item {
  flex: 1 1 200px; min-width: 180px;
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px;
}
.pg-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-dim); color: var(--pink-2);
}
.pg-text { display: flex; flex-direction: column; gap: 1px; }
.pg-title { font-weight: 700; font-size: .88rem; color: var(--text); line-height: 1.2; }
.pg-sub { font-size: .76rem; color: var(--muted); line-height: 1.3; }

/* gentle urgency line under pricing header */
.pricing-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 1rem; padding: .45rem 1rem;
  background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.25);
  border-radius: 50px; font-size: .82rem; color: #fcd34d;
}
.pricing-urgency .pu-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fbbf24;
  box-shadow: 0 0 0 0 rgba(251,191,36,.6); animation: puPulse 1.8s ease-out infinite;
}
@keyframes puPulse {
  0%   { box-shadow: 0 0 0 0 rgba(251,191,36,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(251,191,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); }
}

/* "Wszystko z Mini/Duo" lead-in row in feature lists */
.price-feats .pf-all { opacity: .92; margin-bottom: .15rem; }

@media (max-width: 560px) {
  .pricing-guarantees { gap: 8px; }
  .pg-item { flex: 1 1 100%; }
}
