/* ══════════════════════════════════════════
   WizjaWeb.agency — Main Stylesheet
   Dark theme: Deep navy + Gold + Purple
══════════════════════════════════════════ */

:root {
  --bg-0:       #07070f;
  --bg-1:       #0c0c1a;
  --bg-2:       #111128;
  --bg-card:    #13132a;
  --bg-card-h:  #1a1a36;
  --purple:     #7c3aed;
  --purple-l:   #a855f7;
  --purple-ll:  #c084fc;
  --gold:       #f59e0b;
  --gold-l:     #fbbf24;
  --gold-ll:    #fde68a;
  --text-1:     #f4f4ff;
  --text-2:     #9898b8;
  --text-3:     #5a5a80;
  --border:     rgba(255,255,255,0.07);
  --border-h:   rgba(168,85,247,0.3);
  --grad:       linear-gradient(135deg, var(--purple-l), var(--gold));
  --grad-r:     linear-gradient(135deg, var(--gold), var(--purple-l));
  --radius:     16px;
  --radius-sm:  10px;
  --nav-h:      72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

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

/* ── Gradient text ── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn-primary:hover::after { background: rgba(255,255,255,0.12); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(168,85,247,0.4); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border-h);
  color: var(--text-1);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--purple-l);
  background: rgba(168,85,247,0.08);
  transform: translateY(-2px);
}

.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-l);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  height: var(--nav-h);
}
#navbar.scrolled {
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--gold-l); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-3);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.lang-toggle:hover { border-color: var(--border-h); color: var(--text-2); }
.lang-sep { color: var(--text-3); }
.lang-pl, .lang-en { transition: var(--transition); }
.lang-pl.active, .lang-en.active { color: var(--purple-l); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.mobile-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: 0;
  left: -80px;
  opacity: 0.2;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-left { min-width: 0; }

/* Orb-3 (new) */
.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #c084fc 0%, transparent 70%);
  top: 35%;
  left: 38%;
  opacity: 0.18;
  animation: orbFloat 12s ease-in-out infinite;
}

/* ── Particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-l);
  box-shadow: 0 0 12px var(--gold-l);
  opacity: 0;
  animation: particleFloat 10s linear infinite;
}
.particle:nth-child(even) {
  background: var(--purple-l);
  box-shadow: 0 0 12px var(--purple-l);
}
.particle.p1  { top: 15%;  left: 8%;   animation-delay: 0s;   width: 4px; height: 4px; }
.particle.p2  { top: 28%;  left: 92%;  animation-delay: 1.5s; }
.particle.p3  { top: 65%;  left: 18%;  animation-delay: 3s;   width: 5px; height: 5px; }
.particle.p4  { top: 80%;  left: 78%;  animation-delay: 2s; }
.particle.p5  { top: 42%;  left: 50%;  animation-delay: 4s;   width: 3px; height: 3px; }
.particle.p6  { top: 20%;  left: 40%;  animation-delay: 5.5s; }
.particle.p7  { top: 75%;  left: 35%;  animation-delay: 6s;   width: 4px; height: 4px; }
.particle.p8  { top: 55%;  left: 88%;  animation-delay: 7s; }
.particle.p9  { top: 10%;  left: 65%;  animation-delay: 8s;   width: 5px; height: 5px; }
.particle.p10 { top: 88%;  left: 12%;  animation-delay: 1s; }
.particle.p11 { top: 35%;  left: 22%;  animation-delay: 3.5s; width: 3px; height: 3px; }
.particle.p12 { top: 60%;  left: 60%;  animation-delay: 9s; }

@keyframes particleFloat {
  0%   { transform: translate(0,0) scale(0); opacity: 0; }
  10%  { transform: translate(15px,-20px) scale(1); opacity: 1; }
  90%  { transform: translate(40px,-200px) scale(1); opacity: 1; }
  100% { transform: translate(50px,-240px) scale(0); opacity: 0; }
}

/* ── Hero visual (right column) ── */
.hero-visual {
  position: relative;
  height: 480px;
  perspective: 1200px;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, #7c3aed, #f59e0b, #a855f7, #7c3aed);
  filter: blur(60px);
  opacity: 0.35;
  animation: blobSpin 18s linear infinite;
}
@keyframes blobSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Browser mockup */
.hero-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  max-width: 420px;
  transform: translate(-50%, -50%) rotate(-3deg);
  background: linear-gradient(180deg, #181838, #0f0f24);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(124,58,237,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  animation: mockupFloat 6s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-3deg) translateY(0); }
  50%      { transform: translate(-50%, -50%) rotate(-3deg) translateY(-12px); }
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mockup-bar span:nth-child(1) { background: #ef4444; opacity: 0.7; }
.mockup-bar span:nth-child(2) { background: #f59e0b; opacity: 0.7; }
.mockup-bar span:nth-child(3) { background: #10b981; opacity: 0.7; }
.mockup-url {
  margin-left: 10px;
  padding: 3px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--text-3);
  font-family: 'SF Mono', Menlo, monospace;
  flex: 1;
}
.mockup-body { padding: 20px; }
.mockup-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.mockup-pill {
  width: 38px;
  height: 16px;
  border-radius: 8px;
  background: var(--grad);
}
.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.w70 { width: 70%; } .w50 { width: 40%; }
.mockup-chart { height: 80px; margin-bottom: 16px; position: relative; overflow: hidden; }
.mockup-chart svg { width: 100%; height: 100%; }
.chart-stroke {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2.5s ease forwards 0.5s;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ms-label {
  font-size: 0.65rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ms-val {
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating cards around mockup */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(20,20,42,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 2;
}
.hero-float-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-1);
  font-weight: 700;
  line-height: 1.2;
}
.hero-float-card span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-3);
  margin-top: 2px;
}
.hfc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hfc-purple { background: rgba(168,85,247,0.18); color: var(--purple-l); }
.hfc-gold   { background: rgba(251,191,36,0.18); color: var(--gold-l); }

.hfc-1 { top: 8%;  left: -8%;  animation: floatCard 5s ease-in-out infinite; }
.hfc-2 { top: 38%; right: -10%; animation: floatCard 5.5s ease-in-out infinite 0.5s; }
.hfc-3 { bottom: 6%; left: 4%;  animation: floatCard 6s ease-in-out infinite 1s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-l);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(251,191,36,0); }
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-line {
  display: block;
  animation: fadeUp 0.7s ease both;
}
.hero-line:nth-child(2) { animation-delay: 0.1s; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border-h);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--purple-l);
  border-radius: 2px;
  animation: scrollBob 2s ease infinite;
}
@keyframes scrollBob {
  0%, 100% { top: 6px; opacity: 1; }
  80% { top: 18px; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#uslugi {
  padding: 120px 0;
  background: var(--bg-1);
  position: relative;
}
#uslugi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), transparent);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124,58,237,0.15);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(160deg, rgba(124,58,237,0.12), rgba(245,158,11,0.06));
  border-color: rgba(168,85,247,0.2);
  grid-row: span 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.service-icon svg { width: 48px; height: 48px; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 0.82rem;
  color: var(--text-2);
  padding-left: 14px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grad);
}

.service-cta {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--purple-l);
  margin-top: auto;
  transition: var(--transition);
}
.service-cta:hover { color: var(--gold-l); }

.service-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.service-wide .service-icon { margin-right: 4px; }
.service-wide-content { flex: 1; min-width: 200px; }
.service-wide-content h3 { margin-bottom: 8px; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.service-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--purple-l);
  background: rgba(168,85,247,0.07);
}

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
#dlaczego-my {
  padding: 120px 0;
  background: var(--bg-0);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
}
.why-left p {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(20px);
}
.why-item.visible { opacity: 1; transform: translateX(0); }
.why-item:hover { border-color: var(--border-h); }

.why-num {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
#proces {
  padding: 120px 0;
  background: var(--bg-1);
  position: relative;
}
#proces::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.25), transparent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.process-step.visible { opacity: 1; transform: translateY(0); }

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--purple-l), var(--gold));
  opacity: 0.3;
}
.process-step:last-child .process-connector { display: none; }

.process-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-body p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
#portfolio {
  padding: 120px 0;
  background: var(--bg-0);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Portfolio gradient tiles */
.portfolio-img.grad-1 { background: linear-gradient(135deg, #4a7c2c 0%, #1f4a0e 100%); }
.portfolio-img.grad-2 { background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%); }
.portfolio-img.grad-3 { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }
.portfolio-img.grad-4 { background: linear-gradient(135deg, #65a30d 0%, #365314 100%); }
.portfolio-img.grad-5 { background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%); }
.portfolio-img.grad-6 { background: linear-gradient(135deg, #0891b2 0%, #155e75 100%); }
.portfolio-img.grad-7 { background: linear-gradient(135deg, #6b7280 0%, #1f2937 100%); }
.portfolio-img.grad-8 { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%); }

.portfolio-domain {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  padding: 8px 16px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.portfolio-card.visible { opacity: 1; transform: translateY(0); }
.portfolio-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(124,58,237,0.2);
}

.portfolio-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portfolio-placeholder {
  opacity: 0.5;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-placeholder { opacity: 0.8; }

.portfolio-info {
  padding: 24px;
}
.portfolio-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-l);
  display: block;
  margin-bottom: 10px;
}
.portfolio-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.portfolio-info p {
  font-size: 0.83rem;
  color: var(--text-2);
}

.portfolio-cta {
  text-align: center;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
#opinie {
  padding: 120px 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
#opinie::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), transparent);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stars {
  color: var(--gold-l);
  font-size: 1rem;
  letter-spacing: 2px;
}

blockquote {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-h);
  color: var(--text-1);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.slider-btn:hover {
  background: rgba(168,85,247,0.12);
  border-color: var(--purple-l);
}

.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-h);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--purple-l);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq {
  padding: 120px 0;
  background: var(--bg-0);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-h); }
.faq-item.open { border-color: rgba(168,85,247,0.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  text-align: left;
  transition: var(--transition);
}
.faq-q:hover { color: var(--purple-ll); }

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--purple-l);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 24px;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
#cta-band {
  padding: 80px 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-band-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-band-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
}
.cta-band-inner p {
  color: var(--text-2);
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#kontakt {
  padding: 120px 0;
  background: var(--bg-0);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(168,85,247,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 0.9rem;
  color: var(--text-1);
  transition: var(--transition);
}
.contact-item a:hover { color: var(--purple-l); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-1);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}
.form-group select option { background: var(--bg-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-l);
  box-shadow: 0 0 0 4px rgba(168,85,247,0.12);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-h);
  border-radius: 5px;
  background: var(--bg-card);
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--purple-l);
}
.form-check label {
  font-size: 0.8rem;
  color: var(--text-3);
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--purple-ll);
}
.form-success.show { display: block; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

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

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--text-1); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--border-h);
  color: var(--purple-l);
  background: rgba(168,85,247,0.08);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-3);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text-1); }

/* ══════════════════════════════════════════
   SUBPAGES (services, portfolio)
══════════════════════════════════════════ */
.sub-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
  background: var(--bg-0);
}
.sub-hero .container { position: relative; z-index: 1; }
.sub-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.sub-hero-grid .sub-hero-inner { max-width: none; }

/* Sub-hero visual (mockup per service) */
.sub-hero-visual {
  position: relative;
  height: 440px;
  perspective: 1200px;
  animation: fadeUp 1s 0.2s ease both;
}
.sub-hero-visual .hero-blob {
  width: 340px; height: 340px;
}
.sub-hero-visual .hero-mockup {
  max-width: 400px;
  transform: translate(-50%, -50%) rotate(-2deg);
  animation: subMockupFloat 6s ease-in-out infinite;
}
@keyframes subMockupFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg) translateY(0); }
  50%      { transform: translate(-50%, -50%) rotate(-2deg) translateY(-10px); }
}
.sub-hero-visual .hero-float-card { z-index: 2; }
.sub-hero-visual .hfc-1 { top: 6%;  left: -6%; }
.sub-hero-visual .hfc-2 { top: 42%; right: -8%; }
.sub-hero-visual .hfc-3 { bottom: 4%; left: 6%; }

@media (max-width: 1024px) {
  .sub-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .sub-hero-visual { height: 380px; max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
  .sub-hero-visual { height: 340px; }
  .sub-hero-visual .hero-mockup { max-width: 300px; }
  .sub-hero-visual .hfc-1 { left: 0; }
  .sub-hero-visual .hfc-2 { right: 0; }
  .sub-hero-visual .hfc-3 { left: 0; }
}

/* Package banner inside contact form */
.package-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(245,158,11,0.10));
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  color: var(--purple-ll);
  animation: bannerSlide 0.5s ease both;
}
.package-banner[hidden] { display: none !important; }
.package-banner strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 2px;
}
.package-banner span {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-1);
}
@keyframes bannerSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Honeypot (must be visually hidden, not display:none) ── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Legal pages (privacy / terms) ── */
.legal-hero { max-width: 760px; }
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.legal-date {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-top: 18px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  display: inline-block;
}

.legal-content { padding: 80px 0 100px; }
.legal-article {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 56px 48px;
}
.legal-article h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-1);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.legal-article h2:first-child { margin-top: 0; }
.legal-article h2::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--grad);
}
.legal-article p {
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.legal-article p strong, .legal-article li strong { color: var(--text-1); }
.legal-article a {
  color: var(--purple-l);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}
.legal-article a:hover { color: var(--gold-l); }

.legal-article ul, .legal-article ol {
  margin: 8px 0 18px 0;
  padding-left: 0;
  list-style: none;
}
.legal-article ul li, .legal-article ol li {
  position: relative;
  padding-left: 26px;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-article ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
}
.legal-article ol { counter-reset: legal; }
.legal-article ol li {
  counter-increment: legal;
}
.legal-article ol li::before {
  content: counter(legal) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  font-size: 0.85rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-box {
  background: linear-gradient(135deg, rgba(168,85,247,0.10), rgba(245,158,11,0.06));
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 16px 0 18px;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.75;
}
.legal-box strong {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-1);
  font-size: 1rem;
}

.legal-contact {
  margin-top: 56px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(245,158,11,0.08));
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.legal-contact strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
}

@media (max-width: 768px) {
  .legal-article { padding: 32px 24px; }
  .legal-article h2 { font-size: 1.15rem; margin-top: 32px; }
  .legal-contact { padding: 24px; flex-direction: column; align-items: flex-start; text-align: left; }
}

.sub-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.sub-hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.sub-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: var(--text-3);
  transition: var(--transition);
}
.breadcrumbs a:hover { color: var(--purple-l); }
.breadcrumbs .crumb-sep { color: var(--text-3); opacity: 0.5; }
.breadcrumbs .current { color: var(--text-2); }

.sub-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.sub-hero .lead {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 680px;
}
.sub-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Features grid (subpage) */
.features-section { padding: 100px 0; background: var(--bg-1); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(168,85,247,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--purple-l);
}
.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Long content block */
.content-section { padding: 100px 0; background: var(--bg-0); }
.content-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.content-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 12px;
}
.content-section p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-section ul {
  margin: 16px 0 24px;
  padding-left: 20px;
}
.content-section ul li {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 8px;
  list-style: none;
  position: relative;
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Pricing tiers */
.pricing-section { padding: 100px 0; background: var(--bg-1); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(160deg, rgba(124,58,237,0.12), rgba(245,158,11,0.06));
  border-color: rgba(168,85,247,0.35);
  box-shadow: 0 24px 60px rgba(124,58,237,0.2);
}
.price-card.featured::before {
  content: 'POPULARNE';
  position: absolute;
  top: -12px;
  right: 24px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--grad);
  color: #fff;
}
.price-name {
  font-size: 1.15rem;
  font-weight: 700;
}
.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-amount small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-3);
  -webkit-text-fill-color: var(--text-3);
}
.price-desc {
  font-size: 0.88rem;
  color: var(--text-2);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 18px;
  flex: 1;
}
.price-features li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-l);
  font-weight: 800;
}

/* Realizacje page */
.realizacje-section { padding: 60px 0 100px; background: var(--bg-0); }
.realizacje-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.realiz-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.realiz-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(124,58,237,0.2);
}
.realiz-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.realiz-body { padding: 32px; }
.realiz-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.realiz-domain-tag {
  display: inline-block;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.78rem;
  color: var(--gold-l);
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.realiz-body p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.realiz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.realiz-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-l);
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}
.realiz-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 20px;
}
.realiz-result strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.realiz-result span {
  font-size: 0.72rem;
  color: var(--text-3);
}
.realiz-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple-l);
  transition: var(--transition);
}
.realiz-link:hover { color: var(--gold-l); gap: 10px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 420px; max-width: 480px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-wide { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-connector { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

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

  .hero-stats { gap: 20px; }
  .stat strong { font-size: 1.6rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { flex-direction: row; text-align: left; }

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

  .testimonial-card { flex: 0 0 calc(100% - 24px); }

  .hero-visual { height: 380px; }
  .hero-mockup { max-width: 320px; }
  .hfc-1 { left: 0; top: 4%; }
  .hfc-2 { right: 0; top: 40%; }
  .hfc-3 { left: 0; bottom: 4%; }
  .hero-float-card { padding: 10px 12px; }
  .hero-float-card strong { font-size: 0.78rem; }
  .hero-float-card span { font-size: 0.65rem; }

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

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

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .realizacje-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .footer-nav { grid-template-columns: 1fr; }
}
