/* ================================================
   PREM LOOK LANDING PAGE – Design System v2
   Motyw: Dark Luxury with Gold Accents
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --bg-primary: #090b10;
  --bg-secondary: #0d1118;
  --bg-card: #131822;
  --bg-card-hover: #181f2e;
  --border: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(212, 175, 55, 0.45);

  --acc-gold: #d4af37;
  --acc-gold-dim: #a8892a;
  --acc-gold-glow: rgba(212, 175, 55, 0.25);

  --text-primary: #f0f2f7;
  --text-secondary: #8b95aa;
  --text-muted: #4e5a70;

  --gradient-gold: linear-gradient(135deg, #c9a227, #f5d77e, #c9a227);
  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 50px rgba(212, 175, 55, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
}

/* ── Particle Canvas ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ── Layout ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[style*="--delay"] {
  transition-delay: var(--delay, 0ms);
}

/* ================================================
   HEADER
   ================================================ */
.app-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  padding: 22px 0;
  transition: all var(--ease);
}

.app-header.scrolled {
  background: rgba(9, 11, 16, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--ease), box-shadow var(--ease);
}

.logo-icon:hover {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-icon--sm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.logo-icon--sm svg {
  width: 16px;
  height: 16px;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--acc-gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--acc-gold);
  border-radius: 2px;
  transition: width var(--ease);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--ease);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--ease);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--acc-gold);
  border: 1.5px solid var(--border-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  border-color: var(--acc-gold);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--ease);
  opacity: 0.5;
  overflow: hidden;
}

.lang-btn img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.lang-btn:hover {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--acc-gold);
}

/* ================================================
   SECTION GLOBALS
   ================================================ */
.section {
  padding: 70px 0;
}

.bg-secondary {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--acc-gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--text-primary);
  margin-bottom: 18px;
  font-weight: 700;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.gold-text {
  color: var(--acc-gold);
}

/* ================================================
   HERO
   ================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.hero-content {
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: #22c55e;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 8px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--acc-gold);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--acc-gold-dim);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ================================================
   BEFORE / AFTER SLIDER
   ================================================ */
.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  user-select: none;
  cursor: col-resize;
}

.img-before,
.img-after {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.img-after-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
  /* controlled by JS */
}

.img-after-wrapper .img-after {
  min-width: 900px;
  /* full width so crop works */
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--acc-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  z-index: 10;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--acc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6), 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: transform var(--ease), box-shadow var(--ease);
  gap: 0;
  color: #000;
}

.comparison-slider:hover .slider-handle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.8), 0 4px 20px rgba(0, 0, 0, 0.7);
}

.slider-label {
  position: absolute;
  top: 20px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
}

.label-before {
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.label-after {
  right: 20px;
  background: rgba(212, 175, 55, 0.85);
  color: #000;
}

.slider-hint {
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 70px;
  justify-content: center;
}

.step-connector::before {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--acc-gold-dim), transparent);
  border-radius: 2px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-family: 'Outfit';
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-icon {
  margin-bottom: 20px;
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================================================
   BENEFITS GRID
   ================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all var(--ease);
}

.benefit-card:hover .benefit-icon-wrap {
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.08);
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA Block ── */
.cta-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(61, 108, 232, 0.06) 100%);
  border: 1px solid var(--border-gold);
  padding: 2px;
  /* border gradient trick */
}

.cta-block-inner {
  background: var(--bg-card);
  border-radius: calc(var(--radius-xl) - 2px);
  padding: 70px 40px;
  text-align: center;
}

.cta-block-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-block-inner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ================================================
   FOOTER
   ================================================ */
.app-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
}

/* ================================================
   DLA KOGO — TARGET AUDIENCE
   ================================================ */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.target-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: all var(--ease);
  position: relative;
}

.target-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(212, 175, 55, 0.08);
}

.target-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--ease);
}

.target-card:hover .target-icon {
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.05);
}

.target-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.target-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.target-tag {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--acc-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ================================================
   AI CREDITS SECTION
   ================================================ */
.credits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.credits-heading {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.credits-explanation p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.credits-explanation strong {
  color: var(--text-primary);
}

.credits-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition: all var(--ease);
}

.credit-card:hover {
  border-color: var(--border-gold);
}

.credit-card--ai {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.07), rgba(212, 175, 55, 0.02));
  border-color: rgba(212, 175, 55, 0.25);
}

.credit-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.credit-card-header span {
  font-family: 'Outfit';
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.credit-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.credit-card strong {
  color: var(--text-primary);
}

.credit-info-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.credit-info-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.credit-info-box p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ================================================
   VAT TOGGLE (Netto / Brutto)
   ================================================ */
.vat-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.vat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.vat-label.active {
  color: var(--text-primary);
}

.vat-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--acc-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  text-transform: uppercase;
}

.vat-toggle {
  position: relative;
  width: 60px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--ease);
  flex-shrink: 0;
  outline: none;
}

.vat-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
}

.vat-toggle[aria-pressed="true"] {
  background: var(--gradient-gold);
  border-color: var(--acc-gold);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}

.vat-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform var(--ease), background var(--ease);
}

.vat-toggle[aria-pressed="true"] .vat-toggle-thumb {
  transform: translateX(28px);
  background: #000;
}

/* Nota VAT pod ceną */
.pricing-vat-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transition: color var(--ease);
}

.pricing-vat-note.brutto {
  color: #22c55e;
}

/* Animacja zmiany ceny */
.pricing-amount.price-flip {
  animation: priceFlip 0.35s ease;
}

@keyframes priceFlip {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  40% {
    opacity: 0;
    transform: translateY(-10px);
  }

  60% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
   PRICING
   ================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 40px rgba(212, 175, 55, 0.12);
}

/* Popular plan */
.pricing-card--popular {
  background: var(--gradient-gold);
  border-color: var(--acc-gold);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.25);
  color: #000;
}

.pricing-card--popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 70px rgba(212, 175, 55, 0.4);
}

.pricing-card--popular .pricing-plan-name,
.pricing-card--popular .pricing-plan-desc,
.pricing-card--popular .pricing-amount,
.pricing-card--popular .pricing-currency,
.pricing-card--popular .pricing-period {
  color: #000 !important;
}

.pricing-card--popular .pricing-features li {
  color: rgba(0, 0, 0, 0.8);
}

.pricing-card--popular .check {
  color: #000;
}

/* Lifetime plan */
.pricing-card--lifetime {
  background: linear-gradient(155deg, #131822 0%, #1a1408 50%, #131822 100%);
  border-color: rgba(212, 175, 55, 0.4);
}

.pricing-card--lifetime::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

/* Badge */
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: #000;
  color: var(--acc-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top: none;
}

/* Header */
.pricing-header {
  margin-bottom: 24px;
  text-align: center;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pricing-icon--dark {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.3);
}

.pricing-plan-name {
  font-family: 'Outfit';
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.1;
}

.pricing-plan-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Price */
.pricing-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pricing-currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--acc-gold);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-amount {
  font-family: 'Outfit';
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Saving pill */
.pricing-saving {
  display: inline-flex;
  align-items: center;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  width: fit-content;
}

.pricing-saving--lifetime {
  background: rgba(212, 175, 55, 0.12);
  color: var(--acc-gold);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Features */
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.check {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--acc-gold);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.check.muted {
  color: var(--text-muted);
}

.muted-feat {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

/* CTA Button in card */
.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ================================================
   CONTACT FORM
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

/* Info lewa kolumna */
.contact-info h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

a.contact-detail-value {
  color: var(--acc-gold);
  transition: color var(--ease);
}

a.contact-detail-value:hover {
  color: #f5d77e;
}

/* Wrapper formularza */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

/* Pola */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.required {
  color: var(--acc-gold);
}

.optional {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  font-size: 0.75rem;
  letter-spacing: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--ease);
  outline: none;
  width: 100%;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: var(--bg-card);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--acc-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
  background: var(--bg-card);
}

.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
  font-size: 0.78rem;
  color: #ef4444;
  min-height: 16px;
}

/* Checkbox RODO */
.form-field--checkbox {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  background: var(--bg-secondary);
  transition: all var(--ease);
  position: relative;
  margin-top: 1px;
}

.checkbox-label input:checked~.checkbox-custom {
  background: var(--acc-gold);
  border-color: var(--acc-gold);
}

.checkbox-label input:checked~.checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 7px;
  height: 11px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(40deg);
}

/* Status wiadomości */
.cf-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.cf-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.cf-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
}

/* Submit loading state */
#cf-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-connector {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credits-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .app-header {
    padding: 18px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: rgba(9, 11, 16, 0.97);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    padding: 80px 24px 40px;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 190;
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    justify-content: center;
  }

  .hamburger {
    display: flex;
    z-index: 210;
    position: relative;
  }

  .hero-section {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .stats-bar {
    gap: 0;
    padding: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: 50%;
    padding: 14px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .credits-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .cta-block-inner {
    padding: 50px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}