/* ===== css/marketing.css =====
 * Styling specific to marketing landing (index.html).
 * Reuses tokens from css/tokens.css - load order: tokens.css FIRST, then marketing.css.
 * Contains: buttons, nav, hero, funnel rings, raport mock, principles,
 * comparison, timeline, pricing, mini-hero, team, audit form, FAQ, footer,
 * FAB consult modal, animations, keyframes, media queries.
 */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--brand-blue); color: #FFF; }
.btn-primary:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(var(--brand-blue-rgb), 0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--text-h);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: var(--text-h);
  color: var(--bg-main);
  border-color: var(--text-h);
}
.btn-ghost {
  color: var(--accent);
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--accent);
}
/* Focus-visible - a11y: visible keyboard focus ring na wszystkich btn variantach */
.btn:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

/* ===== Brand Kit fine-tuning: Caption/Tag weight 500 (BRAND-KIT.md 2026-05-22) =====
 * Inter as --font-mono needs explicit weight 500 for uppercase tag-style labels
 * (mono fonts had natural visual weight; Inter at default 400 looks too thin) */
.hero-tag,
.hero-scroll-hint,
.hero-meta-label,
.bento-tag,
.funnel-scroll-hint,
.funnel-story-stage,
.funnel-story-output-label,
.funnel-disk-tag,
.funnel-progress-helper,
.funnel-mobile-tag,
.funnel3d-disk-tag,
.raport-kpi-label,
.raport-chart-title,
.step-time,
.step-expand,
.paths-header,
.paths-them::before,
.price-tag,
.price-name,
.tools-section-label,
.audit-card-tag,
.audit-meta-label,
.price-choice-label,
.price-choice-divider,
.modal-label,
.price-expand-btn,
.sec-label {
  font-weight: 500;
}

/* ===== Scroll progress bar ===== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200;
  pointer-events: none;
  transition: transform 100ms linear;
  will-change: transform;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background 320ms var(--ease-standard),
    backdrop-filter 320ms var(--ease-standard),
    -webkit-backdrop-filter 320ms var(--ease-standard),
    border-color 320ms var(--ease-standard),
    box-shadow 320ms var(--ease-standard),
    transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.nav.nav--scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 6px 28px -10px rgba(2, 8, 20, 0.08);
}
.nav.nav--hidden {
  transform: translateY(-100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: var(--space-6);
  transition: height var(--duration-base) var(--ease-standard);
}
.nav-logo {
  height: 76px;
  transition: transform var(--duration-base) var(--ease-standard);
  transform-origin: left center;
}
.nav-links {
  position: relative;
  display: flex;
  gap: var(--space-2);
  padding: 4px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background 320ms var(--ease-standard),
    border-color 320ms var(--ease-standard);
  isolation: isolate;
}
.nav.nav--scrolled .nav-links {
  background: rgba(248, 250, 252, 0.6);
  border-color: var(--border-subtle);
}
.nav-link {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color var(--duration-base) var(--ease-standard);
}
.nav-link.is-active {
  color: #0F172A;
}
.nav-link:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
/* Tubelight indicator - filled pill with top glow, slides under active link */
.nav-cursor {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  width: 0;
  background: rgba(0, 117, 255, 0.09);
  border: none;
  border-radius: 999px;
  opacity: 0;
  transform: translateX(0);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    width 280ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms var(--ease-standard);
}
.nav-cursor::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: #0075FF;
  border-radius: 999px 999px 0 0;
  box-shadow: 0 0 8px rgba(0, 117, 255, 0.55), 0 0 20px rgba(0, 117, 255, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .nav-cursor { transition: opacity 160ms linear; }
}
.nav.nav--shrunk .nav-inner { height: 72px; }
.nav.nav--shrunk .nav-logo { transform: scale(0.8); }
@media (max-width: 900px) { .nav-links { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .nav { transition: background 200ms linear, border-color 200ms linear; }
  .nav.nav--hidden { transform: none; }
}

/* ===== Hero Shader (light) ===== */
.shader-bg-light {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}
.page-content {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* ===== Hero ===== */
.hero {
  margin-top: calc(-1 * var(--space-24));
  padding: clamp(120px, 14vh, 168px) 0 clamp(56px, 8vh, 96px);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0, 117, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(67, 56, 202, 0.03) 0%, transparent 70%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none; mix-blend-mode: multiply;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0, 117, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(67, 56, 202, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: heroDrift 60s linear infinite;
  z-index: 0;
  opacity: 0.6;
}
@keyframes heroDrift {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(14px, -12px) scale(1.03); }
  50%  { transform: translate(10px, 8px) scale(1.05); }
  75%  { transform: translate(-10px, 4px) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}
.hero-visual {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 0;
}
.hero-visual-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}
.hero-visual-blob--1 {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle at center, rgba(0, 117, 255, 0.6), rgba(0, 117, 255, 0));
  animation: blobFloat1 8s ease-in-out infinite;
}
.hero-visual-blob--2 {
  width: 220px;
  height: 220px;
  top: 50%;
  right: 5%;
  background: radial-gradient(circle at center, rgba(67, 56, 202, 0.5), rgba(67, 56, 202, 0));
  animation: blobFloat2 10s ease-in-out infinite;
}
.hero-visual-blob--3 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  left: 30%;
  background: radial-gradient(circle at center, rgba(0, 117, 255, 0.35), rgba(0, 117, 255, 0));
  animation: blobFloat3 12s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -16px); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-24px, 18px); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(14px, 12px); }
  66% { transform: translate(-12px, -10px); }
}
.hero { z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: var(--w-default); }

/* Above-the-fold scroll invitation - fixed bottom of viewport, fade out on scroll */
.hero-scroll-hint {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 50;
  transition: color 220ms var(--ease-standard), opacity 280ms var(--ease-standard);
}
.hero-scroll-hint:hover { color: var(--brand-blue); }
.hero-scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.hero-scroll-hint:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 4px;
  border-radius: 4px;
}
.hero-scroll-hint-icon {
  width: 20px;
  height: 20px;
  animation: heroScrollBob 1.8s ease-in-out infinite;
}
@keyframes heroScrollBob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(7px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint-icon { animation: none; opacity: 0.8; }
}
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--brand-blue);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: cursorBlink 1.2s steps(2) infinite;
}
@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero-visual-blob,
  .hero-cursor { animation: none; }
  .hero-cursor { opacity: 1; }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-8);
}
.hero-tag::before {
  content: ''; width: 24px; height: 1px;
  background: var(--accent);
}
.hero h1 {
  margin-bottom: var(--space-8);
  color: var(--accent);
  text-shadow: none;
  font-size: clamp(3rem, 6vw, 5.5rem);
}
.hero h1 em {
  color: var(--text-h);
  font-style: normal;
  text-shadow:
    -1px -1px 0 rgba(255,255,255,0.25), 1px -1px 0 rgba(255,255,255,0.25),
    -1px 1px 0 rgba(255,255,255,0.25), 1px 1px 0 rgba(255,255,255,0.25),
    0 -1px 0 rgba(255,255,255,0.25), 0 1px 0 rgba(255,255,255,0.25),
    -1px 0 0 rgba(255,255,255,0.25), 1px 0 0 rgba(255,255,255,0.25);
}
.hero-rotate {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-style: normal;
  vertical-align: baseline;
}
.hero-rotate-ghost {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}
.hero-rotate-item {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-rotate-item.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-rotate-item.exiting {
  opacity: 0;
  transform: translateY(-10px);
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotate-item { transition: none; transform: none; }
  .hero-rotate-item:not(.active) { display: none; }
}
.hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: var(--space-8);
  line-height: 1.55;
}
.hero-actions {
  display: flex; gap: var(--space-4); flex-wrap: wrap;
  margin-bottom: var(--space-16);
}
.hero-meta {
  display: flex; gap: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  max-width: 640px;
  flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-h);
}
.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
/* Scarcity note - dyskretna adnotacja NAD meta strip, bez pillboxa */
.hero-scarcity {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.hero-scarcity strong {
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.04em;
}
.hero-scarcity-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  flex-shrink: 0;
  animation: scarcityPulse 2.4s var(--ease-standard) infinite;
}
@keyframes scarcityPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 117, 255, 0.45); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 5px rgba(0, 117, 255, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scarcity-dot { animation: none; }
}

/* (F7-06 .pillars-funnel CSS removed - Saturn rings restored, używamy .funnel-scroll-section z linii ~765) */
@media (prefers-reduced-motion: reduce) {
  .pillar-card { transition: none; }
  .pillar-card:hover { transform: none; }
}

/* ===== Mini-hero · "Cisza w sieci" (cinematic dark separator, between pricing and credibility) ===== */
.mini-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(var(--brand-blue-rgb), 0.08), transparent 70%),
    #0B1220;
  padding: clamp(48px, 6vw, 80px) var(--page-padding);
  min-height: clamp(280px, 36vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mini-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7' /%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.mini-hero-inner {
  max-width: 880px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}
.mini-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #FFFFFF;
  margin: 0;
}
.mini-hero-title em {
  font-style: normal;
  color: var(--brand-blue);
}
/* Rotating word - namespace mini- for isolation from hero */
.mini-hero-rotate {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}
.mini-hero-rotate-ghost {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}
.mini-hero-rotate-item {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 480ms cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mini-hero-rotate-item.active { opacity: 1; transform: translateY(0); }
.mini-hero-rotate-item.exiting { opacity: 0; transform: translateY(-14px); }

.mini-hero-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 4px;
  transition: color 220ms var(--ease-standard), border-color 220ms var(--ease-standard);
}
.mini-hero-link:hover {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
}
.mini-hero-link:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .mini-hero-rotate-item { transition: none; }
  .mini-hero-rotate-item.active { opacity: 1; transform: none; }
  .mini-hero-rotate-item:not(.active) { display: none; }
}
@media (max-width: 700px) {
  .mini-hero { padding: var(--space-16) var(--space-5); min-height: auto; }
  .mini-hero-inner { gap: var(--space-6); }
  .mini-hero-title { font-size: clamp(2rem, 9vw, 3rem); }
}

/* ===== Bento ===== */
.bento-section { background: var(--bg-panel); }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}
.bento-card {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.bento-card--8 { grid-column: span 8; }
.bento-card--6 { grid-column: span 6; }
.bento-card--4 { grid-column: span 4; }
.bento-card--12 { grid-column: span 12; }
@media (max-width: 900px) {
  .bento-card { grid-column: span 12 !important; }
}
.bento-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.bento-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.bento-card h3 { color: var(--text-h); }
.bento-card p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== Sticky Scrollytelling Funnel ===== */
.funnel-scroll-section {
  position: relative;
}
/* Track: tall container that drives sticky scroll. 5 stages × 100vh = 500vh */
.funnel-scroll-track {
  position: relative;
  height: 500vh;
}
.funnel-scroll-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  padding: 24px 0;
}
.funnel-scroll-header {
  max-width: var(--w-narrow);
  margin-bottom: var(--space-8);
}
.funnel-scroll-header .sec-label { display: inline-block; }
.funnel-scroll-header h2 {
  margin-top: var(--space-3);
}
/* V6.3 - scroll progress hint */
.funnel-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--brand-blue-subtle);
  border: 1px solid var(--brand-blue-subtle);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin-top: var(--space-2);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 400ms var(--ease-standard), transform 400ms var(--ease-standard);
  width: fit-content;
}
.funnel-scroll-hint.visible {
  opacity: 1;
  transform: translateY(0);
}
.funnel-scroll-hint.fading {
  opacity: 0;
  transform: translateY(-4px);
}
.funnel-scroll-hint svg { animation: hintBounce 1.6s ease-in-out infinite; }
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .funnel-scroll-hint svg { animation: none; }
}
/* === Funnel stack-grid: visualizer + storytelling 50/50 === */
.funnel-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 900px) {
  .funnel-stack-grid { display: none; } /* mobile uses funnel-mobile-fallback */
}

/* === Funnel stack: stacked horizontal flat ovals === */
.funnel-stack {
  position: relative;
  max-width: min(580px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: var(--space-4) 0;
}

/* === Storytelling side panel === */
.funnel-storytelling {
  max-width: min(520px, 100%);
  padding: var(--space-4) var(--space-6);
}
.funnel-story-content {
  transition: opacity 220ms var(--ease-standard), transform 220ms var(--ease-standard);
}
.funnel-story-content.fading {
  opacity: 0;
  transform: translateY(8px);
}
.funnel-story-stage {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: inline-block;
  margin-bottom: var(--space-3);
}
.funnel-storytelling h3 {
  font-size: 1.625rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}
.funnel-storytelling p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: var(--space-6);
}
.funnel-story-output {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}
.funnel-story-output-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.funnel-story-output-value {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-h);
  letter-spacing: -0.01em;
}
.funnel-disk {
  position: relative;
  margin: 0 auto;
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  border-radius: 50%; /* makes flat oval given width >> height */
  background: transparent;
  transition:
    border-color 500ms var(--ease-standard),
    border-width 500ms var(--ease-standard),
    background 500ms var(--ease-standard),
    box-shadow 500ms var(--ease-standard);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-12);
}
.funnel-disk + .funnel-disk { margin-top: -50px; }

/* Funnel narrows: each disk smaller (width + height) */
.funnel-disk--1 { width: 100%; height: 160px; }
.funnel-disk--2 { width: 86%;  height: 150px; }
.funnel-disk--3 { width: 72%;  height: 135px; }
.funnel-disk--4 { width: 58%;  height: 120px; }
.funnel-disk--5 { width: 44%;  height: 105px; padding: 0 var(--space-6); }

/* Number on the LEFT edge of disk (outside) */
.funnel-disk-num {
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translate(-100%, -50%);
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(15, 23, 42, 0.35);
  transition: color 400ms var(--ease-standard), transform 400ms var(--ease-standard);
  font-feature-settings: "tnum";
  pointer-events: none;
}
.funnel-disk.active .funnel-disk-num {
  color: var(--brand-blue);
  transform: translate(-100%, -50%) scale(1.05);
}

/* Meta inside disk (tag + name) - visible only when NOT active OR fades on active */
.funnel-disk-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  transition: opacity 220ms var(--ease-standard);
}
.funnel-disk.active .funnel-disk-meta { opacity: 0; pointer-events: none; position: absolute; }
.funnel-disk-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.funnel-disk-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text-h);
}
.funnel-disk--4 .funnel-disk-name,
.funnel-disk--5 .funnel-disk-name { font-size: 0.8125rem; }

/* Pillsy WEWNĄTRZ active disku - hidden default, fade in on active */
.funnel-disk-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 8px;
  max-width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-standard) 80ms;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.funnel-disk.active .funnel-disk-pills {
  opacity: 1;
  pointer-events: auto;
}
/* V6.3 - pillsy stagger reveal inside active disk */
.funnel-disk-pills .funnel-pill {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 280ms var(--ease-standard), transform 280ms var(--ease-standard);
}
.funnel-disk.active .funnel-disk-pills .funnel-pill {
  opacity: 1;
  transform: translateY(0);
}
.funnel-disk.active .funnel-disk-pills .funnel-pill:nth-child(1) { transition-delay: 0ms; }
.funnel-disk.active .funnel-disk-pills .funnel-pill:nth-child(2) { transition-delay: 50ms; }
.funnel-disk.active .funnel-disk-pills .funnel-pill:nth-child(3) { transition-delay: 100ms; }
.funnel-disk.active .funnel-disk-pills .funnel-pill:nth-child(4) { transition-delay: 150ms; }
.funnel-disk.active .funnel-disk-pills .funnel-pill:nth-child(5) { transition-delay: 200ms; }
.funnel-disk.active .funnel-disk-pills .funnel-pill:nth-child(6) { transition-delay: 250ms; }
@media (prefers-reduced-motion: reduce) {
  .funnel-disk-pills .funnel-pill { transition: none; opacity: 1; transform: translateY(0); }
}
/* Middle disks (2-3-4) - 2-col grid for better pill distribution */
.funnel-disk--2 .funnel-disk-pills,
.funnel-disk--3 .funnel-disk-pills,
.funnel-disk--4 .funnel-disk-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  max-width: 86%;
  width: 86%;
}
.funnel-disk--2 .funnel-pill,
.funnel-disk--3 .funnel-pill,
.funnel-disk--4 .funnel-pill {
  width: 100%;
  justify-content: flex-start;
}
/* Disk 2 has 5 pills - last one spans full width centered */
.funnel-disk--2 .funnel-pill:nth-child(5) {
  grid-column: span 2;
  justify-self: center;
  width: auto;
}
.funnel-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--brand-blue);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 117, 255, 0.25);
  transition: all 220ms var(--ease-standard);
  cursor: pointer;
  white-space: nowrap;
}
.funnel-pill::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.funnel-pill:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 117, 255, 0.35);
}
.funnel-disk--3 .funnel-pill,
.funnel-disk--4 .funnel-pill { font-size: 0.75rem; padding: 6px 12px; }
.funnel-disk--5 .funnel-pill { font-size: 0.6875rem; padding: 5px 10px; }

/* Active disk: solid Brand Blue + lift + glow */
.funnel-disk.active {
  border-color: var(--brand-blue);
  border-width: 2.5px;
  background: var(--bg-main);
  box-shadow:
    0 0 0 4px rgba(0, 117, 255, 0.06),
    0 12px 32px rgba(0, 117, 255, 0.15);
}
.funnel-disk:hover:not(.active) {
  border-color: rgba(0, 117, 255, 0.4);
}

/* === Progress indicator === */
.funnel-scroll-progress {
  margin-top: var(--space-12);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.funnel-progress-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-h);
  font-feature-settings: "tnum";
  min-width: 70px;
}
.funnel-progress-bar {
  flex: 1;
  max-width: 320px;
  height: 2px;
  background: var(--border-subtle);
  border-radius: 9999px;
  overflow: hidden;
}
.funnel-progress-fill {
  height: 100%;
  background: var(--brand-blue);
  width: 100%;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform 300ms var(--ease-standard);
  border-radius: 9999px;
}
.funnel-progress-helper {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* === Mobile fallback === */
.funnel-mobile-fallback { display: none; }
@media (max-width: 900px) {
  .funnel-scroll-track { display: none; }
  .funnel-mobile-fallback {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
  .funnel-mobile-card {
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
  }
  .funnel-mobile-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: var(--brand-blue);
    border-radius: 9999px;
  }
  .funnel-mobile-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    font-feature-settings: "tnum";
    display: block;
    margin-bottom: 4px;
  }
  .funnel-mobile-tag {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    display: block;
    margin-bottom: var(--space-2);
  }
  .funnel-mobile-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
  }
  .funnel-mobile-card p {
    font-size: 0.875rem;
    margin-bottom: var(--space-3);
  }
  .funnel-mobile-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .funnel-mobile-card li {
    padding-left: var(--space-3);
    position: relative;
    font-size: 0.875rem;
    color: var(--text-body);
  }
  .funnel-mobile-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
  }
  .funnel-mobile-addon {
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px dashed var(--border-subtle);
    font-size: 0.8125rem;
    color: var(--brand-indigo, #4338CA);
    line-height: 1.5;
  }
  .funnel-mobile-addon a {
    color: var(--brand-indigo, #4338CA);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .funnel-mobile-addon a:hover {
    color: var(--brand-blue);
  }
}

/* === Old funnel3d styles kept for compatibility (mobile only) - but unused === */
.funnel3d-section { display: none; }
.funnel3d-stage {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
/* Each disk: flat oval (width >> height) - natural "viewed from above" feel */
.funnel3d-disk {
  position: relative;
  margin: 0 auto;
  border: 2px solid rgba(15, 23, 42, 0.16);
  border-radius: 50%; /* makes oval given width != height */
  background: rgba(248, 249, 252, 0.4);
  transition: all 600ms var(--ease-standard);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 64px;
}
.funnel3d-disk + .funnel3d-disk { margin-top: -28px; }

/* Funnel narrows: each disk smaller (width + height) */
.funnel3d-disk--1 { width: 92%; height: 200px; }
.funnel3d-disk--2 { width: 78%; height: 180px; }
.funnel3d-disk--3 { width: 62%; height: 160px; }
.funnel3d-disk--4 { width: 48%; height: 140px; }
.funnel3d-disk--5 { width: 32%; height: 120px; padding: 0 40px; }

/* Number label - to the LEFT of disk, big number */
.funnel3d-disk-num {
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(-100%, -50%);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(15, 23, 42, 0.4);
  transition: color 400ms var(--ease-standard);
  font-feature-settings: "tnum";
  pointer-events: none;
}
.funnel3d-disk.active .funnel3d-disk-num {
  color: var(--brand-blue);
}

/* Meta (tag + name) - to the RIGHT of disk OR inside as caption */
.funnel3d-disk-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
}
.funnel3d-disk-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.funnel3d-disk-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text-h);
}
.funnel3d-disk--4 .funnel3d-disk-name,
.funnel3d-disk--5 .funnel3d-disk-name { font-size: 0.8125rem; }

/* Pillsy WEWNĄTRZ disku - always visible, slightly more vivid on active */
.funnel3d-disk-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 90%;
}
.funnel3d-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--brand-blue);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 117, 255, 0.18);
  transition: all 220ms var(--ease-standard);
  cursor: pointer;
  white-space: nowrap;
}
.funnel3d-pill::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.funnel3d-pill:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 117, 255, 0.35);
}

/* Active state: solid Brand Blue outline + lift + glow */
.funnel3d-disk.active {
  border-color: var(--brand-blue);
  background: var(--bg-main);
  box-shadow:
    0 0 0 4px rgba(0, 117, 255, 0.06),
    0 12px 32px rgba(0, 117, 255, 0.12);
  transform: translateY(-4px);
}

/* Smaller disks adjustments */
.funnel3d-disk--3 .funnel3d-pill { font-size: 0.6875rem; padding: 5px 10px; }
.funnel3d-disk--4 .funnel3d-pill { font-size: 0.6875rem; padding: 5px 10px; }
.funnel3d-disk--5 .funnel3d-pill { font-size: 0.625rem; padding: 4px 8px; }
.funnel3d-disk--4 .funnel3d-disk-num,
.funnel3d-disk--5 .funnel3d-disk-num { font-size: 1.5rem; left: -12px; }

/* Mobile: same flat ovals but bigger padding-bottom */
@media (max-width: 900px) {
  .funnel3d-stage { padding: 0; }
  .funnel3d-disk {
    width: 100% !important;
    height: auto !important;
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-xl);
    margin: 0 0 var(--space-4) 0 !important;
  }
  .funnel3d-disk-num {
    position: static;
    transform: none;
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
  }
  .funnel3d-disk-pills { max-width: 100%; }
}

/* ===== Animations: page-load stagger ===== */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 600ms var(--ease-standard) forwards;
}
.reveal-stagger > *:nth-child(1) { animation-delay: 60ms; }
.reveal-stagger > *:nth-child(2) { animation-delay: 140ms; }
.reveal-stagger > *:nth-child(3) { animation-delay: 220ms; }
.reveal-stagger > *:nth-child(4) { animation-delay: 300ms; }
.reveal-stagger > *:nth-child(5) { animation-delay: 380ms; }
.reveal-stagger > *:nth-child(6) { animation-delay: 460ms; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Animations: scroll-triggered reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-standard), transform 500ms var(--ease-standard);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Tools logos marquee (port z production index.html) ===== */
.tools-logos-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.tools-logos {
  display: flex;
  align-items: center;
  width: max-content;
  animation: toolsLogosScroll 60s linear infinite;
  animation-play-state: paused;
}
/* M9.15b: animacja startuje dopiero gdy sekcja w widoku (JS toggluje .is-running) - bez desyncu "pol puste". */
.tools-logos.is-running { animation-play-state: running; }
/* (F11: usunięty .tools-section:hover { animation-play-state: paused } - marquee leci ciągle) */
.tool-logo-img {
  height: 30px;
  width: auto;
  opacity: 0.85;
  flex-shrink: 0;
  /* M9.15b: per-item trailing margin zamiast flex gap - translateX(-50%) trafia dokladnie 1 set = seamless. */
  margin-right: var(--space-12);
  transition: opacity 220ms var(--ease-standard), transform 220ms var(--ease-standard);
}
.tools-logos:hover .tool-logo-img:hover {
  opacity: 1;
  transform: scale(1.08);
}
@keyframes toolsLogosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tools-logos {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
    width: 100%;
  }
  /* gap przejmuje odstepy w statycznym wrapie - zerujemy per-item margin zeby nie dublowac. */
  .tool-logo-img { margin-right: 0; }
}
@media (max-width: 768px) {
  .tool-logo-img { height: 22px; margin-right: var(--space-8); }
}

/* ===== Mock raport - Aceternity container-scroll (rotateX 20→0 + scale 1.05→1) ===== */
.raport-section {
  padding: var(--section-y) 0;
  perspective: 1100px;
  perspective-origin: 50% 30%;
  overflow: hidden;
}
.raport-frame {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-3);
  background: #222222;
  border: 4px solid #6C6C6C;
  border-radius: 30px;
  box-shadow:
    0 0 #0000004d,
    0 9px 20px #0000004a,
    0 37px 37px #00000042,
    0 84px 50px #00000026,
    0 149px 60px #0000000a,
    0 233px 65px #00000003;
  --tilt-progress: 1; /* default = resolved (flat). JS adds .tilt-armed to opt into the rotated start. */
  transform-origin: 50% 0%;
  transform:
    rotateX(calc((1 - var(--tilt-progress)) * 18deg))
    scale(calc(1.05 - var(--tilt-progress) * 0.05));
  transition: transform 100ms linear, box-shadow 360ms var(--ease-standard);
  will-change: transform;
}
.raport-frame.tilt-armed { --tilt-progress: 0; } /* JS-armed rotated start (only when canPin) */
.raport-frame.tilt-locked {
  --tilt-progress: 1;
  box-shadow:
    0 30px 80px -20px rgba(0, 117, 255, 0.18),
    0 12px 32px -8px rgba(2, 8, 20, 0.18);
}
.raport-frame > .raport-topbar,
.raport-frame > .raport-body {
  background: #0A0A0C;
  border-radius: 22px;
}
.raport-frame > .raport-topbar { border-bottom: 1px solid rgba(255, 255, 255, 0.06); border-radius: 22px 22px 0 0; }
.raport-frame > .raport-body { border-radius: 0 0 22px 22px; }
@media (prefers-reduced-motion: reduce) {
  .raport-frame {
    transform: none;
    transition: none;
    --tilt-progress: 1;
  }
}
@media (max-width: 768px) {
  .raport-frame {
    border-radius: 20px;
    border-width: 3px;
  }
  .raport-frame > .raport-topbar,
  .raport-frame > .raport-body { border-radius: 14px; }
  .raport-frame > .raport-topbar { border-radius: 14px 14px 0 0; }
  .raport-frame > .raport-body { border-radius: 0 0 14px 14px; }
}
.raport-topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}
.raport-dots { display: flex; gap: 6px; }
.raport-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.raport-dots span:first-child { background: #FF5F56; }
.raport-dots span:nth-child(2) { background: #FFBD2E; }
.raport-dots span:nth-child(3) { background: #27C93F; }
.raport-tabs {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
}
.raport-tab {
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  transition: background-color 220ms var(--ease-standard), color 220ms var(--ease-standard);
  background: transparent;
  border: none;
  cursor: pointer;
}
.raport-tab:hover { color: rgba(255, 255, 255, 0.85); }
.raport-tab:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.raport-tab.active {
  background: var(--brand-blue);
  color: #FFF;
}
.raport-title {
  font-family: var(--font-display);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-left: var(--space-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1 1 auto;
}
.raport-client {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background-color 220ms var(--ease-standard), color 220ms var(--ease-standard);
}
.raport-client:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}
.raport-client:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.raport-client-name {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.raport-client svg { opacity: 0.5; }
.raport-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 212, 138, 0.18);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #00D48A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.raport-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #00D48A;
  box-shadow: 0 0 0 0 rgba(0, 212, 138, 0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 138, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0, 212, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 138, 0); }
}
.raport-body {
  background: #000;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  color: rgba(255, 255, 255, 0.92);
}
.raport-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.raport-kpi {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  position: relative;
  cursor: help;
}
.raport-kpi::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-standard);
  z-index: 10;
}
.raport-kpi:hover::after,
.raport-kpi:focus-within::after { opacity: 1; }
.raport-kpi-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.raport-kpi-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.raport-kpi-delta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  margin-top: 4px;
  color: #00D48A;
}
.raport-kpi-delta.warn { color: #FFBD2E; }
.raport-charts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.raport-chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.raport-chart-title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.raport-chart svg { width: 100%; height: 90px; }
.raport-posts h4 {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  font-weight: 400;
}
.raport-post-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: var(--space-3);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
}
.raport-post-rank {
  font-family: var(--font-display);
  font-weight: 700;
  color: #3391FF;
}
.raport-post-text { color: rgba(255, 255, 255, 0.78); }
.raport-post-num {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.5);
  font-feature-settings: "tnum";
}
@media (max-width: 800px) {
  .raport-kpis { grid-template-columns: repeat(2, 1fr); }
  .raport-charts { grid-template-columns: 1fr; }
  .raport-title { flex: 1 1 100%; order: 5; margin-left: 0; }
  .raport-kpi::after {
    white-space: normal;
    max-width: 220px;
    text-align: center;
  }
}

/* ===== Process timeline ===== */
.process-section {
  position: relative;
}
.process-section .container-wide {
  max-width: 1100px;
  margin: 0 auto;
}
/* F11: scroll-hold pattern (analog .funnel-scroll-section) */
/* M9.15: 250vh scroll-pin removed. Section is now normal height (~1 screen, consistent with the
   rest of the page); the timeline reveals on enter instead of scrolling through a pinned track.
   No overflow:hidden so the desktop hover-panel step-detail can escape downward. */
.process-scroll-track {
  position: relative;
}
.process-scroll-pin {
  position: relative;
  display: block;
  padding: var(--space-12) 0;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  position: relative;
}
/* Old div line disabled: replaced by SVG line for animation */
.timeline::before { display: none; }

.timeline-svg-line {
  position: absolute;
  top: 14px;
  left: 8px;
  right: calc(25% - 8px);
  width: auto;
  height: 4px;
  pointer-events: none;
  overflow: visible;
}
.timeline-line-path {
  stroke: var(--accent);
  stroke-dasharray: var(--line-length, 1000);
  stroke-dashoffset: var(--line-length, 1000);
  transition: stroke-dashoffset 900ms var(--ease-standard);
}
.timeline.visible .timeline-line-path {
  stroke-dashoffset: 0;
}
/* Scroll-driven progress line: blue overlay that fills with scroll */
.timeline-line-progress {
  stroke: var(--brand-blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: var(--line-length, 1000);
  stroke-dashoffset: calc(var(--line-length, 1000) * (1 - var(--timeline-progress, 0)));
  transition: stroke-dashoffset 1100ms var(--ease-standard);
}

.step {
  position: relative;
  padding-top: var(--space-12);
  display: flex; flex-direction: column;
  gap: var(--space-2);
  padding-right: var(--space-3);
}
.step-dot {
  position: absolute;
  top: 6px; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 2px solid var(--accent);
  z-index: 1;
}
.step-time {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-5);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0;
}
.step p { font-size: 0.875rem; line-height: 1.6; margin: 0; }

/* Key bullet (always visible) - readable plain language */
.step-bullet {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
  margin: var(--space-2) 0 0;
  max-width: 28ch;
}

/* Expandable detail wrapper - accordion micro-expand (see BRAND-KIT.md Motion exception). */
.step-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 360ms var(--ease-standard),
    opacity 220ms var(--ease-standard) 80ms,
    margin-top 240ms var(--ease-standard);
}
.step-detail p { color: var(--text-muted); }
.step.is-open .step-detail {
  max-height: 360px;
  opacity: 1;
  margin-top: var(--space-2);
}
/* Desktop (M9.15): step detail becomes a floating hover/focus panel that does NOT push layout
   (pricing stays put). Touch/mobile keeps the inline .is-open accordion (tap Rozwin) above. */
@media (hover: hover) and (pointer: fine) {
  .step-detail {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: min(360px, 92vw);
    max-height: none;
    overflow: visible;
    margin-top: 0;
    padding: var(--space-5);
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 200ms var(--ease-standard), transform 200ms var(--ease-standard);
  }
  /* Right-edge step: anchor panel to the right so it never runs off screen */
  .step[data-step-index="3"] .step-detail { left: auto; right: 0; }
  .step:hover .step-detail,
  .step:focus-within .step-detail {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .step-expand { display: none; } /* hover/focus reveals the panel; no sticky button on desktop */
}

/* Expand toggle button (chevron + label) */
.step-expand {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 0;
  background: transparent;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  cursor: pointer;
  transition: color 220ms var(--ease-standard);
}
.step-expand:hover,
.step-expand:focus-visible {
  color: var(--brand-blue);
}
.step-expand:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 4px;
}
.step-expand-icon {
  width: 10px;
  height: 10px;
  transition: transform 280ms var(--ease-standard);
}
.step:hover .step-expand-icon,
.step.is-open .step-expand-icon { transform: rotate(180deg); }
.step.is-open .step-expand-label::after { content: " wstecz"; }

/* Chevron bob pulse - only on first step, before user opens any */
@keyframes stepChevronBob {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(3px); }
}
.timeline.visible .step[data-step-index="0"]:not(.is-open):not(:hover) .step-expand-icon {
  animation: stepChevronBob 2.2s var(--ease-standard) infinite;
  animation-delay: 1.4s;
}

/* Scroll-driven step-dot fill (progressively turns brand-blue as scroll passes) */
.step-dot {
  transition: background 240ms var(--ease-standard), border-color 240ms var(--ease-standard), box-shadow 240ms var(--ease-standard);
}
.step.is-passed .step-dot {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 5px rgba(0, 117, 255, 0.12);
}

/* F10: letter-stagger triggered by .is-passed (port z 21st.dev TextStaggerHover)
   - chars są przyciemnione default, „zapalają się" sekwencyjnie gdy line dotrze do kropki */
.step .step-time .step-char,
.step h4 .step-char {
  display: inline-block;
  opacity: 0.28;
  transform: translateY(0);
  transition:
    opacity 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(var(--ci, 0) * 0.028s);
}
.step.is-passed .step-time .step-char,
.step.is-passed h4 .step-char {
  opacity: 1;
}
.step.is-passed .step-time .step-char {
  color: var(--brand-blue);
}
.step.is-passed h4 .step-char {
  color: var(--text-h);
}

/* Step dots pulse on reach */
.timeline.visible .step:nth-child(2) .step-dot { animation: dotPulse 600ms var(--ease-standard) 0ms; }
.timeline.visible .step:nth-child(3) .step-dot { animation: dotPulse 600ms var(--ease-standard) 375ms; }
.timeline.visible .step:nth-child(4) .step-dot { animation: dotPulse 600ms var(--ease-standard) 750ms; }
.timeline.visible .step:nth-child(5) .step-dot { animation: dotPulse 600ms var(--ease-standard) 1125ms; }

@keyframes dotPulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(var(--brand-blue-rgb), 0.5); }
  50%  { transform: scale(1.25); box-shadow: 0 0 0 6px rgba(var(--brand-blue-rgb), 0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(var(--brand-blue-rgb), 0); }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-line-path {
    transition: none;
    stroke-dashoffset: 0;
  }
  .timeline.visible .step .step-dot {
    animation: none;
  }
  .step .step-time .step-char,
  .step h4 .step-char {
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: var(--space-6); }
  .timeline-svg-line { display: none; }
  .step { padding-top: 0; padding-left: var(--space-8); border-left: 2px solid var(--accent); }
  .step-dot { top: 4px; left: -9px; }
}

/* ===== Comparison - Dwie ścieżki (shared 12-week timeline) ===== */
.comparison-section {
  padding: var(--section-y) 0;
}

.paths-table {
  margin-top: var(--space-10);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-panel);
}

.paths-header,
.paths-row {
  display: grid;
  grid-template-columns: 96px 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-4) var(--space-6);
}

.paths-header {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.paths-h-us {
  color: var(--brand-blue);
  font-weight: 700;
}

.paths-row {
  position: relative;
  border-bottom: 1px dashed var(--border-subtle);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease-standard), transform 500ms var(--ease-standard), background-color 220ms var(--ease-standard);
  cursor: pointer;
}
.paths-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.paths-row:last-of-type { border-bottom: none; }
.paths-row:hover { background: rgba(0, 117, 255, 0.025); }
.paths-row:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: -2px;
}

.paths-them, .paths-us {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.paths-bullet {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
.paths-them .paths-bullet { color: var(--text-muted); }
.paths-us .paths-bullet { color: var(--text-h); }
.paths-row--peak .paths-us .paths-bullet { color: var(--brand-blue); }
.paths-row--final .paths-us .paths-bullet { color: var(--brand-blue); }

/* Comparison row expand - accordion micro-expand (see BRAND-KIT.md Motion exception). */
.paths-detail {
  font-size: 0.875rem;
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 320ms var(--ease-standard),
    opacity 200ms var(--ease-standard) 80ms,
    margin-top 220ms var(--ease-standard);
}
.paths-them .paths-detail { color: var(--text-faint); }
.paths-us .paths-detail { color: var(--text-muted); }

.paths-row:hover .paths-detail,
.paths-row.is-open .paths-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}

.paths-chevron {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-faint);
  font-weight: 300;
  transition: color 220ms var(--ease-standard), transform 320ms var(--ease-standard);
  pointer-events: none;
  user-select: none;
}
.paths-row:hover .paths-chevron,
.paths-row.is-open .paths-chevron {
  color: var(--brand-blue);
  transform: translateY(-50%) rotate(90deg);
}
.paths-row--peak .paths-chevron { color: rgba(0, 117, 255, 0.5); }
.paths-row--final .paths-chevron { color: var(--brand-blue); }

/* Pulse only on first data row to invite interaction */
@keyframes pathsChevronPulse {
  0%, 60%, 100% { transform: translateY(-50%) translateX(0); }
  30% { transform: translateY(-50%) translateX(4px); }
}
.paths-row.visible:nth-of-type(2) .paths-chevron {
  animation: pathsChevronPulse 2.4s var(--ease-standard) infinite;
  animation-delay: 1.6s;
}
.paths-row.visible:nth-of-type(2):hover .paths-chevron,
.paths-row.visible:nth-of-type(2).is-open .paths-chevron {
  animation: none;
}

.paths-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  font-feature-settings: "tnum";
}
.paths-them {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-faint);
  margin: 0;
}
.paths-us {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-h);
  font-weight: 500;
  margin: 0;
}

.paths-row--peak {
  background: rgba(0, 117, 255, 0.04);
}
.paths-row--peak .paths-us {
  color: var(--brand-blue);
  font-weight: 600;
}
.paths-row--final {
  background: rgba(0, 117, 255, 0.06);
  border-bottom: none;
}
.paths-row--final .paths-time {
  color: var(--brand-blue);
}

.paths-outtake {
  margin-top: var(--space-10);
  padding: var(--space-8);
  background: var(--bg-panel);
  border: 1px solid var(--brand-blue-subtle);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: baseline;
  gap: var(--space-5);
  box-shadow: 0 12px 40px rgba(0, 117, 255, 0.06);
}
.paths-outtake-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-blue);
  line-height: 1;
  flex-shrink: 0;
  font-feature-settings: "tnum";
}
.paths-outtake-label {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text-h);
}

/* Mobile: stack each row vertically */
@media (max-width: 800px) {
  .paths-header {
    display: none;
  }
  .paths-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding: var(--space-5);
  }
  .paths-time {
    font-size: 0.6875rem;
  }
  .paths-them::before {
    content: "Inni:";
    display: block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: var(--space-1);
  }
  .paths-us::before {
    content: "Straid:";
    display: block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: var(--space-1);
  }
  .paths-outtake {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-6);
  }
  .paths-outtake-num {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .paths-row { transition: none; opacity: 1; transform: translateY(0); }
}

/* ===== Pricing ===== */
.pricing-section { }
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.price-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  display: flex; flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.price-card.featured {
  background: var(--bg-panel);
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 117, 255, 0.18), 0 4px 12px rgba(0, 117, 255, 0.08);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 18px 56px rgba(0, 117, 255, 0.25), 0 6px 18px rgba(0, 117, 255, 0.12);
}
.price-tag {
  position: absolute;
  top: -12px;
  left: var(--space-12);
  padding: 4px 12px;
  background: var(--accent);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}
.price-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.price-card h3 { font-size: 1.5rem; }
.price-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4ch;
  font-family: var(--font-display);
  font-feature-settings: "tnum";
}
.price-value-prefix {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.price-value-amount {
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--text-h);
  line-height: 1;
}
.price-value-suffix {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.price-value small { font-size: 0.9375rem; font-weight: 500; color: var(--text-muted); }
.price-card.featured .price-value-amount { color: var(--brand-blue); }
.price-features { display: flex; flex-direction: column; gap: var(--space-2); margin: var(--space-4) 0; }
.price-features li {
  padding-left: 24px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.55;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.price-card .btn { margin-top: auto; align-self: center; }
.pricing-disclaimer {
  max-width: 640px;
  margin: var(--space-6) auto 0;
  font-size: 0.75rem;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.5;
  opacity: 0.7;
}
.pricing-disclaimer-star {
  color: var(--accent-blue, currentColor);
  font-weight: 600;
  margin-right: 2px;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }

/* V6.6 - Pricing cards reveal stagger */
.pricing .price-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-standard), transform 500ms var(--ease-standard);
}
.pricing.visible .price-card { opacity: 1; transform: translateY(0); }
.pricing.visible .price-card:nth-child(1) { transition-delay: 0ms; }
.pricing.visible .price-card:nth-child(2) { transition-delay: 80ms; }
.pricing.visible .price-card:nth-child(3) { transition-delay: 160ms; }

/* V6.6 - Featured Growth pulse on badge */
.price-card.featured .price-tag {
  animation: featuredPulse 3s ease-in-out infinite;
}
@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 117, 255, 0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(0, 117, 255, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .price-card.featured .price-tag { animation: none; }
  .pricing .price-card { opacity: 1; transform: none; transition: none; }
}

/* V6.6 - Pricing toggle (Miesięcznie / Rocznie) */
.pricing-section .container-wide { display: flex; flex-direction: column; }
.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-12);
  align-self: center;
}
.pricing-toggle-btn {
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: background-color var(--transition-base), color var(--transition-base);
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pricing-toggle-btn.active {
  background: var(--text-h);
  color: var(--bg-main);
  font-weight: 700;
}
.pricing-toggle-discount {
  display: inline-block;
  padding: 2px 6px;
  background: rgba(0, 194, 122, 0.15);
  color: #00C27A;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}
.pricing-toggle-btn:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.pricing-toggle-btn.active .pricing-toggle-discount {
  background: rgba(0, 194, 122, 0.3);
  color: #FFF;
}
/* V6.6 - Compare link + modal */
.pricing-compare-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: var(--space-4) auto 0;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-blue);
  background: transparent;
  border: 1px solid var(--brand-blue-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  align-self: center;
}
.pricing-compare-link:hover {
  background: var(--brand-blue-subtle);
  border-color: var(--brand-blue);
}
.pricing-compare-link svg { width: 14px; height: 14px; }

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.pricing-modal[hidden] { display: none; }
.pricing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modalBackdrop 300ms var(--ease-standard) forwards;
}
.pricing-modal-content {
  position: relative;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  animation: modalSlide 300ms var(--ease-standard) forwards;
}
@keyframes modalBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pricing-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-modal-header h3 { font-size: 1.125rem; }
.pricing-modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-h);
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}
.pricing-modal-close:hover {
  background: var(--text-h);
  color: var(--bg-main);
}
.pricing-modal-close svg { width: 16px; height: 16px; }
.pricing-modal-close:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.pricing-modal-body {
  padding: var(--space-6) var(--space-8);
  overflow-y: auto;
}
.pricing-modal-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-modal-table th,
.pricing-modal-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
  font-size: 0.875rem;
}
.pricing-modal-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-h);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-modal-table thead th:first-child { width: 50%; }
.pricing-modal-table tbody td { color: var(--text-body); }
.pricing-modal-table tbody td:not(:first-child) {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-h);
}
.pricing-modal-table tbody td.cell-empty {
  color: var(--text-faint);
  font-weight: 400;
}
@media (max-width: 700px) {
  .pricing-modal-header { padding: var(--space-4) var(--space-4); }
  .pricing-modal-body   { padding: var(--space-4); }
  .pricing-modal-table th,
  .pricing-modal-table td {
    padding: var(--space-2);
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-modal-backdrop,
  .pricing-modal-content { animation-duration: 1ms; }
}

/* ===== Tools section (logos marquee container) - dark band, kolorowe ikony ===== */
.tools-section {
  background: #0B0E13;
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.tools-section-label {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-8);
}

/* ===== Team grid (4-col card stack z zigzag offset) ===== */
.team-section { }
.team-note {
  max-width: 640px;
  margin: var(--space-10) auto 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}
.team-note strong {
  color: var(--text-h);
  font-weight: 600;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}
/* Subtle zigzag offset - echoes timeline language without breaking symmetry */
.team-grid .team-card:nth-child(even) { transform: translateY(28px); }

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 280ms var(--ease-standard), transform 320ms var(--ease-standard);
}
.team-grid:hover .team-card:not(:hover) {
  opacity: 0.55;
}
.team-grid:hover .team-card:not(:hover):nth-child(even) {
  transform: translateY(28px) scale(0.98);
}
.team-grid:hover .team-card:not(:hover):nth-child(odd) {
  transform: scale(0.98);
}
.team-card:hover:nth-child(even) {
  transform: translateY(24px);
}
.team-card:hover:nth-child(odd) {
  transform: translateY(-4px);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 320ms var(--ease-standard);
}
.team-card:hover .team-card-photo {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 117, 255, 0.08);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) brightness(0.92);
  transition: filter 480ms var(--ease-standard);
}
.team-card:hover .team-card-photo img {
  filter: grayscale(0) brightness(1);
}
/* Caption gradient overlay - ciemny → transparent od dołu, czyta tekst na zdjęciu */
.team-card-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(2, 8, 20, 0.92) 0%, rgba(2, 8, 20, 0.7) 35%, rgba(2, 8, 20, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-faint);
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 117, 255, 0.06), transparent 60%),
    var(--bg-elevated);
}

/* Caption block - absolute overlay na dole zdjęcia */
.team-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-4) var(--space-5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: #FFFFFF;
  line-height: 1.2;
  transition: color 220ms var(--ease-standard);
}
.team-card:hover .team-card-name { color: var(--brand-blue-light, #66B2FF); }

.team-card-role {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.team-card-social {
  margin-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.team-card-social-link {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  background: transparent;
  transition:
    color 160ms var(--ease-standard),
    transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.team-card-social-link:hover {
  color: var(--brand-blue);
  transform: translateY(-2px);
}
.team-card-social-link:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.team-card-social-link svg { width: 16px; height: 16px; }

/* Tablet - keep 3 cols (grid is compact with 3 cards) */
@media (max-width: 1023px) {
  .team-grid { gap: var(--space-6); max-width: 720px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .team-grid .team-card:nth-child(even) { transform: none; }
  .team-card { max-width: 320px; margin: 0 auto; }
  .team-grid:hover .team-card:not(:hover) { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-card-photo,
  .team-card-photo img,
  .team-card-name,
  .team-card-social,
  .team-card-social-link { transition: none; }
  .team-grid:hover .team-card:not(:hover) { opacity: 1; transform: none; }
  .team-card:hover { transform: none; }
  .team-card:hover:nth-child(even) { transform: translateY(28px); }
}

/* ===== FAQ ===== */
.faq-section { }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q {
  width: 100%;
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-h);
  letter-spacing: -0.01em;
  transition: color 220ms var(--ease-standard);
}
.faq-item.open .faq-q { color: var(--brand-blue); }
.faq-q:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-q-mark {
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform var(--duration-base) var(--ease-spring);
}
.faq-item.open .faq-q-mark { transform: rotate(45deg); }
/* FAQ accordion - accordion micro-expand (see BRAND-KIT.md Motion exception).
   Using --ease-standard (was --ease-spring; spring overshoot doesn't work on max-height). */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease-standard);
}
.faq-item.open .faq-a { max-height: 360px; }
.faq-a-inner {
  padding: 0 0 var(--space-6) 0;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 720px;
}

/* ===== Audit lead magnet ===== */
.audit-section { }

.audit-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

/* M9.10d: audit-content gets card styling parallel to audit-form */
.audit-content {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.audit-card-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.audit-card-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.audit-form h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.audit-form-intro {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.audit-card-cta {
  margin-top: auto;
  align-self: flex-start;
}

.audit-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}
.audit-content p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

/* ===== M9.12: Contact form (lewa karta sekcji 08) ===== */
.contact-form { gap: var(--space-4); }
.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form .field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-h);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.contact-form .field-label .optional {
  color: var(--text-faint);
  font-weight: 400;
  font-size: 0.75rem;
}
.contact-form .field input,
.contact-form .field textarea {
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-main);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-h);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
}
.contact-form .field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder { color: var(--text-faint); }
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--brand-blue-rgb), 0.15);
}
.contact-form .field input:invalid:not(:placeholder-shown):not(:focus),
.contact-form .field textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #DC2626;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
}
.contact-submit,
.booking-cta {
  align-self: center;
  margin: auto auto 0;
  width: fit-content;
  min-width: 220px;
  padding: 14px 32px;
  justify-content: center;
}
.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.booking-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}
.booking-cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== M9.12: Booking card (prawa karta - Google Appointment Schedule iframe) ===== */
.audit-booking {
  padding: var(--space-12);
  gap: var(--space-4);
}
.audit-booking h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.audit-booking > p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.audit-booking-embed {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.audit-booking-meta {
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-muted);
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.audit-booking-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .audit-booking-embed { padding: var(--space-8) 0; }
}

/* ===== M9.12: Contact strip pod kartami ===== */
.audit-contact-strip {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.audit-contact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-h);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}
.audit-contact-item:hover { color: var(--brand-blue); }
.audit-contact-item:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 4px;
  border-radius: 2px;
}
.audit-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
  flex-shrink: 0;
}
.audit-contact-tagline {
  color: var(--text-muted);
  font-style: italic;
}
@media (max-width: 700px) {
  .audit-contact-strip {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

.audit-clarify {
  margin-top: calc(-1 * var(--space-4));
  padding: var(--space-3) var(--space-4);
  background: var(--bg-elevated);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.audit-clarify .data {
  color: var(--accent);
  font-weight: 700;
}

/* ===== Cztery zasady (principles) - minimal ===== */
.principles-section {
  padding: var(--section-y) 0;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-8);
}
.principle-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  border-left: 2px solid var(--accent);
  background: var(--bg-main);
  border-radius: 8px;
}
.principle-card h3 {
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.principle-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}
@media (max-width: 980px) { .principles-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); } }
@media (max-width: 600px) { .principles-grid { grid-template-columns: 1fr; } }

.audit-meta {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.audit-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.audit-meta-num {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-h);
  font-feature-settings: "tnum";
}
.audit-meta-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Form card */
.audit-form {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.audit-form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.audit-form-field label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-h);
}
.audit-form-field input {
  padding: 14px 16px;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-h);
  transition: border-color var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}
.audit-form-field input::placeholder { color: var(--text-faint); }
.audit-form-field input:focus-visible {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--brand-blue-subtle);
}

.audit-submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-2);
}

.audit-form-note {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  text-align: center;
  margin: 0;
}

.audit-form-success {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: #E6F8F0;
  border: 1px solid rgba(0, 194, 122, 0.5);
  border-radius: var(--radius-md);
  color: var(--brand-success, #00C27A);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
}
.audit-form-success[hidden] { display: none; }
.audit-form-error {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #DC2626;
  text-align: center;
  margin: var(--space-2) 0 0;
}
.audit-form-error a { color: inherit; text-decoration: underline; }
.audit-form-error[hidden] { display: none; }
.audit-form-success svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-success, #00C27A);
  flex-shrink: 0;
}
.audit-form-success svg circle {
  stroke-dasharray: 69;
  stroke-dashoffset: 69;
}
.audit-form-success svg path {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
}
.audit-form-success.visible svg circle {
  animation: auditSuccessCircle 0.6s var(--ease-standard) forwards;
}
.audit-form-success.visible svg path {
  animation: auditSuccessCheck 0.3s var(--ease-standard) forwards 0.4s;
}
@keyframes auditSuccessCircle { to { stroke-dashoffset: 0; } }
@keyframes auditSuccessCheck  { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .audit-form-success svg circle,
  .audit-form-success svg path { stroke-dashoffset: 0 !important; animation: none !important; }
}

@media (max-width: 800px) {
  .audit-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .audit-form {
    padding: var(--space-8);
  }
  .audit-meta {
    gap: var(--space-6);
  }
}

/* Section reveal: stagger header → form → booking → contact strip */
.audit-section .sec-header,
.audit-content,
.audit-form,
.audit-contact-strip {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-standard), transform 500ms var(--ease-standard);
}
.audit-section.visible .sec-header { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.audit-section.visible .audit-form { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.audit-section.visible .audit-content { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.audit-section.visible .audit-contact-strip { transition-delay: 300ms; opacity: 1; transform: translateY(0); }

/* ===== Realizacje placeholder ===== */
.results-section { background: var(--bg-main); }
/* V6.9 - pulse dot at h2 */
.results-live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 12px;
  vertical-align: middle;
  animation: resultsPulse 1.8s ease-in-out infinite;
}
@keyframes resultsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 117, 255, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(0, 117, 255, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .results-live-dot { animation: none; }
}
.results-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  max-width: var(--w-narrow);
  margin: 0 auto;
  text-align: center;
}
.results-card h3 { font-size: 1.5rem; margin-bottom: var(--space-3); }
.results-card p { max-width: min(520px, 100%); margin: 0 auto var(--space-6); }

/* ===== Contact ===== */
.contact-section {
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
}
/* V6.9 - radial pulse behind the contact card */
.contact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 117, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: contactPulse 4s ease-in-out infinite;
  z-index: 0;
}
.contact-section > .container-wide { position: relative; z-index: 1; }
@keyframes contactPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-section::before { animation: none; }
}
.contact-card {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 300ms var(--ease-standard), box-shadow 300ms var(--ease-standard), border-color 300ms var(--ease-standard);
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-blue);
  box-shadow: 0 12px 40px rgba(0, 117, 255, 0.15);
}
.contact-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
  transition: transform 300ms var(--ease-standard);
}
.contact-card:hover .contact-photo {
  transform: scale(1.04);
}
.contact-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.contact-links { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.contact-links a {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--duration-base) var(--ease-standard);
}
.contact-links a:hover { color: var(--accent); }

/* ===== Footer (M9.13: zunifikowany z /automatyzacja, light theme) ===== */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-12) 0;
  margin-top: var(--space-24);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-8);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-logo-link { display: inline-flex; align-items: center; }
.footer-logo-img { height: 28px; width: auto; }
.footer-text { color: var(--text-muted); line-height: 1.5; }
.footer-tier2-link {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  margin-top: var(--space-1);
}
.footer-tier2-link:hover { color: var(--text-h); }
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}
.footer-links a:hover { color: var(--text-h); }
.footer-links a:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 800px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
  .footer-legal { text-align: left; }
  .footer-links { justify-content: flex-start; }
}

/* ===== Sandbox badge (hidden - toggled via DOM removal before production) ===== */
.sandbox-badge { display: none; }

/* ===== Floating revolving-text consult button + modal (Ref: muneebable/floating-consult-button v2) ===== */
.consult-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 95;
  width: 140px;
  height: 140px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transition:
    opacity 360ms var(--ease-standard),
    transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.consult-fab.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.consult-fab-revolve {
  position: absolute;
  inset: 0;
  animation: consultRevolve 18s linear infinite;
}
@keyframes consultRevolve {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.consult-fab-revolve svg {
  width: 100%;
  height: 100%;
}
.consult-fab-revolve text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  fill: var(--text-h);
  font-weight: 600;
}
.consult-fab-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.consult-fab-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-blue);
  box-shadow:
    0 8px 24px -6px rgba(0, 117, 255, 0.45),
    0 4px 12px -2px rgba(2, 8, 20, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 320ms var(--ease-standard);
}
.consult-fab-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.consult-fab:hover .consult-fab-avatar {
  transform: scale(1.06);
  box-shadow:
    0 12px 32px -6px rgba(0, 117, 255, 0.55),
    0 6px 16px -2px rgba(2, 8, 20, 0.25);
}
.consult-fab:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 6px;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .consult-fab {
    bottom: 20px;
    right: 20px;
    width: 110px;
    height: 110px;
  }
  .consult-fab-avatar { width: 62px; height: 62px; }
  .consult-fab-revolve text { font-size: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .consult-fab-revolve { animation: none; }
  .consult-fab { transition: opacity 200ms linear; }
}

/* Modal */
.consult-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 20, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-standard);
}
.consult-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.consult-modal {
  position: fixed;
  bottom: 200px;
  right: 32px;
  z-index: 210;
  max-width: 440px;
  width: calc(100vw - 64px);
  background: var(--bg-panel);
  border-radius: 28px;
  padding: var(--space-10);
  box-shadow:
    0 30px 80px -20px rgba(2, 8, 20, 0.32),
    0 12px 32px -8px rgba(2, 8, 20, 0.18);
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 320ms var(--ease-standard),
    transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.consult-modal.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.consult-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: background-color 220ms var(--ease-standard), color 220ms var(--ease-standard);
}
.consult-modal-close:hover {
  background: rgba(2, 8, 20, 0.06);
  color: var(--text-h);
}
.consult-modal-close svg { width: 18px; height: 18px; }
.consult-modal-close:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.consult-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.consult-modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-h);
  line-height: 1.1;
}
.consult-modal-badge {
  flex-shrink: 0;
  padding: 6px 14px;
  border: 1.5px solid var(--text-h);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-h);
  font-weight: 600;
}
.consult-modal-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: var(--space-6);
}
.consult-modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: fit-content;
  min-width: 220px;
  margin: 0 auto;
  padding: 16px 28px;
  background: var(--text-h);
  color: var(--bg-panel);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 220ms var(--ease-standard), transform 220ms var(--ease-standard);
}
.consult-modal-cta:hover {
  background: var(--brand-blue);
  transform: translateY(-1px);
}
.consult-modal-cta svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .consult-modal {
    bottom: 150px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: var(--space-8);
    border-radius: 24px;
  }
  .consult-modal-title { font-size: 1.625rem; }
}
@media (prefers-reduced-motion: reduce) {
  .consult-modal-backdrop, .consult-modal { transition: opacity 200ms linear; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Pricing v2 - 4-card grid, Enterprise dark, choice block, CTA row, modal
   ============================================================ */

.pricing.pricing--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .pricing.pricing--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing.pricing--four { grid-template-columns: 1fr; }
}

/* Enterprise (dark) card */
.price-card.price-card--enterprise {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  border-color: rgba(255,255,255,0.12);
  color: #FFF;
}
.price-card.price-card--enterprise h3,
.price-card.price-card--enterprise .price-value-amount { color: #FFF; }
.price-card.price-card--enterprise p,
.price-card.price-card--enterprise .price-features li,
.price-card.price-card--enterprise .price-name,
.price-card.price-card--enterprise .price-value-suffix { color: rgba(255,255,255,0.72); }
.price-card.price-card--enterprise .price-features li::before {
  background-color: rgba(255,255,255,0.88);
}
.price-card.price-card--enterprise:hover {
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 18px 56px rgba(15, 23, 42, 0.35);
}
.price-card.price-card--enterprise .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: #FFF;
  background: transparent;
}
.price-card.price-card--enterprise .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Starter "wybierasz 1 filar" choice block */
.price-choice {
  background: var(--bg-elevated);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.price-choice-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0;
}
.price-choice-option {
  font-size: 0.8125rem;
  color: var(--text-body);
  margin: 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.price-choice-option::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9375rem;
}
.price-choice-option strong { color: var(--text-h); font-weight: 700; }
.price-choice-divider {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin: 2px 0;
  position: relative;
}
.price-choice-divider::before,
.price-choice-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: var(--border-subtle);
}
.price-choice-divider::before { left: 0; }
.price-choice-divider::after { right: 0; }

/* CTA row pod presetami (Skonfiguruj własny pakiet) */
.pricing-cta-row {
  display: flex;
  justify-content: center;
  margin-top: var(--space-12);
}
.btn-ghost-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--brand-blue-soft);
  color: var(--brand-blue);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
  text-decoration: none;
}
.btn-ghost-blue:hover {
  background: var(--brand-blue-subtle);
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}
.btn-ghost-blue:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

/* Lead modal (popup form) - shared with /pricing */
.lead-modal {
  max-width: 480px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 32px);
  padding: 0;
  margin: auto;
  border: none;
  border-radius: var(--radius-xl);
  background: var(--bg-main);
  box-shadow: var(--shadow-xl);
  overflow: hidden auto;
  color: var(--text-h);
}
.lead-modal[hidden],
.modal-form-view[hidden],
.modal-success[hidden] { display: none !important; }
.lead-modal::backdrop {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.lead-modal[open] { animation: modalIn 320ms var(--ease-spring); }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  z-index: 2;
  transition: background-color var(--transition-base), color var(--transition-base);
  border: none;
  cursor: pointer;
}
.modal-close:hover { background: var(--border-strong); color: var(--text-h); }
.modal-close:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.modal-header {
  padding: var(--space-10) var(--space-10) var(--space-5);
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
}
.modal-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.modal-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
}
.modal-title {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}
.modal-title span { color: var(--accent); }
.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.modal-form {
  padding: var(--space-8) var(--space-10) var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.modal-form .field { display: flex; flex-direction: column; gap: 6px; }
.modal-form .field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-h);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.modal-form .field .req { color: #DC2626; font-weight: 700; }
.modal-form .field .optional { color: var(--text-faint); font-weight: 400; font-size: 0.75rem; }
.modal-form .field input,
.modal-form .field textarea {
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-main);
  font-size: 0.9375rem;
  font: inherit;
  color: var(--text-h);
  width: 100%;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.modal-form .field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.modal-form .field input::placeholder,
.modal-form .field textarea::placeholder { color: var(--text-faint); }
.modal-form .field input:focus,
.modal-form .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 117, 255, 0.15);
}
.modal-form .field input:invalid:not(:placeholder-shown):not(:focus),
.modal-form .field textarea:invalid:not(:placeholder-shown):not(:focus) { border-color: #DC2626; }
.modal-submit {
  display: flex;
  align-self: center;
  margin: var(--space-2) auto 0;
  width: fit-content;
  min-width: 220px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  justify-content: center;
}
.modal-submit[disabled] { opacity: 0.6; cursor: wait; }
.modal-fine {
  font-size: 0.6875rem;
  color: var(--text-faint);
  line-height: 1.55;
  margin-top: var(--space-1);
}
.modal-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.8125rem;
  color: #991B1B;
  line-height: 1.5;
}
.modal-success {
  padding: var(--space-12) var(--space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.modal-success-icon {
  width: 56px;
  height: 56px;
  color: var(--brand-success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
  background: transparent;
}
.modal-success-icon svg { width: 56px; height: 56px; display: block; }
.modal-success-icon svg circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}
.modal-success-icon svg path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.modal-success.visible .modal-success-icon svg circle {
  animation: modalSuccessCircle 0.6s var(--ease-standard) forwards;
}
.modal-success.visible .modal-success-icon svg path {
  animation: modalSuccessCheck 0.3s var(--ease-standard) forwards 0.4s;
}
@keyframes modalSuccessCircle { to { stroke-dashoffset: 0; } }
@keyframes modalSuccessCheck  { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .modal-success-icon svg circle,
  .modal-success-icon svg path { stroke-dashoffset: 0 !important; animation: none !important; }
}
.modal-success h3 { font-size: 1.25rem; }
.modal-success p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 320px;
}
.modal-success strong { color: var(--text-h); font-weight: 600; }

@media (max-width: 600px) {
  .modal-header, .modal-form { padding-left: var(--space-7); padding-right: var(--space-7); }
}

/* CTA always pinned to bottom of card regardless of content length */
.price-card > .btn { margin-top: auto; }

/* ===== Price card expand (Growth narracja) ===== */
.price-expand-wrap { display: flex; flex-direction: column; gap: var(--space-2); }

.price-expand-body {
  position: relative;
  max-height: 4.5em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.price-expand-body::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5em;
  background: linear-gradient(to bottom, transparent, var(--bg-panel));
  pointer-events: none;
  transition: opacity 0.25s;
}
.price-expand-body.is-open { max-height: 400px; }
.price-expand-body.is-open::after { opacity: 0; }
.price-expand-body p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.price-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.price-expand-btn:hover { opacity: 1; }
.price-expand-icon { transition: transform 0.25s ease; flex-shrink: 0; }
.price-expand-btn[aria-expanded="true"] .price-expand-icon { transform: rotate(180deg); }
