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

:root {
  --pink:    #ff2d78;
  --purple:  #9b27ff;
  --blue:    #00c3ff;
  --gold:    #ffd700;
  --dark:    #080810;
  --dark2:   #0f0f1a;
  --dark3:   #16162a;
  --card:    #1a1a2e;
  --text:    #e8e8f0;
  --muted:   #8888aa;
  --grad:    linear-gradient(135deg, var(--pink), var(--purple));
  --grad2:   linear-gradient(135deg, var(--purple), var(--blue));
  --radius:  16px;
  --shadow:  0 8px 32px rgba(155,39,255,.25);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 3.2vw, 3.4rem); font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }

.glow {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,45,120,.5));
}

.section-tag {
  display: inline-block;
  background: rgba(155,39,255,.15);
  border: 1px solid rgba(155,39,255,.4);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,45,120,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,45,120,.6); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(155,39,255,.6);
}
.btn-outline:hover { border-color: var(--purple); background: rgba(155,39,255,.1); transform: translateY(-2px); }

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

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .3s ease;
}
#navbar.scrolled {
  background: rgba(8,8,16,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155,39,255,.2);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: row; align-items: baseline; gap: 1px; line-height: 1; }
.logo-k { font-size: 1.45rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-size: 1.45rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: .75; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a { font-size: .9rem; font-weight: 600; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  box-shadow: 0 2px 16px rgba(255,45,120,.3);
}
.nav-links .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(255,45,120,.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background: radial-gradient(ellipse at 20% 50%, rgba(155,39,255,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,45,120,.12) 0%, transparent 50%),
              var(--dark);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--grad);
  animation: float var(--d) ease-in-out infinite alternate;
  opacity: .6;
}
@keyframes float {
  from { transform: translateY(0) scale(1); opacity: .6; }
  to   { transform: translateY(-30px) scale(1.3); opacity: 1; }
}

/* Hero uses container + grid so content never overlaps visual */
#hero > .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  min-width: 0; /* prevents grid blowout */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,45,120,.1);
  border: 1px solid rgba(255,45,120,.3);
  color: var(--pink);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  color: var(--muted);
  margin: 1rem 0 1.75rem;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: .65rem; color: var(--muted); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: rgba(155,39,255,.3); }

.hero-visual {
  width: clamp(260px, 30vw, 360px);
  height: clamp(260px, 30vw, 360px);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* orbit track circle */
.hv-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(155,39,255,.25);
  box-shadow: 0 0 30px rgba(155,39,255,.1) inset;
}

/* rotating arm wrapper */
.hv-arm-wrap {
  position: absolute;
  inset: 0;
  animation: spin 3.5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hv-arm {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  height: 3px;
  margin-top: -1.5px;
  background: linear-gradient(90deg, rgba(155,39,255,.0) 0%, rgba(155,39,255,.9) 40%, var(--pink) 100%);
  border-radius: 3px;
  transform-origin: 0 50%;
  box-shadow: 0 0 10px rgba(255,45,120,.6);
}

/* camera head */
.hv-cam {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%) rotate(calc(-1 * var(--rot, 0deg)));
  width: 36px;
  height: 28px;
  background: var(--card);
  border: 2px solid var(--pink);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(255,45,120,.7);
  animation: counter-spin 3.5s linear infinite;
}
@keyframes counter-spin { to { transform: translateY(-50%) rotate(-360deg); } }

.hv-lens {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #555, #111);
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 0 6px rgba(0,195,255,.5);
}

.hv-rec-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff3333;
  box-shadow: 0 0 5px #ff3333;
  animation: rec-blink 1s step-start infinite;
}

/* platform */
.hv-platform {
  position: absolute;
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 10px;
  background: var(--grad);
  border-radius: 50px;
  box-shadow: 0 0 18px rgba(255,45,120,.5), 0 0 40px rgba(255,45,120,.2);
  z-index: 2;
}
.hv-platform-glow {
  position: absolute;
  inset: -6px -14px;
  border-radius: 50px;
  background: var(--grad);
  opacity: .18;
  filter: blur(10px);
  animation: glow-pulse 2s ease-in-out infinite;
}

/* person */
.hv-person {
  position: absolute;
  bottom: calc(16% + 18px);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(155,39,255,.6));
  animation: person-bob 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes person-bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* floating video cards */
.hv-card {
  position: absolute;
  width: 64px;
  background: rgba(26,26,46,.9);
  border: 1px solid rgba(155,39,255,.3);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.hv-card-1 {
  top: 8%;
  left: -8%;
  animation: float-card 4s ease-in-out infinite;
}
.hv-card-2 {
  top: 30%;
  right: -10%;
  animation: float-card 4s ease-in-out infinite 2s;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hv-card-bar {
  height: 6px;
  background: rgba(155,39,255,.4);
  border-radius: 3px;
  width: 100%;
}
.hv-card-bar-s { width: 60%; background: rgba(255,45,120,.35); }
.hv-card-icon {
  font-size: .6rem;
  color: var(--pink);
  align-self: flex-end;
  line-height: 1;
}

/* 360° badge */
.hv-badge {
  position: absolute;
  bottom: 4%;
  right: 4%;
  background: var(--grad);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 0 16px rgba(255,45,120,.5);
  letter-spacing: .03em;
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
}
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== O NAS ===== */
#o-nas { background: var(--dark2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-text strong { color: var(--text); }

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.5rem;
}
.about-list li { font-size: .95rem; color: var(--text); }

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== 360 BOOTH ANIMATION ===== */
.booth-scene {
  position: relative;
  width: 280px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* outer glow ring track */
.booth-track {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* decorative dashed orbit */
.booth-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(155,39,255,.35);
  animation: spin 18s linear infinite;
}

/* glowing platform base */
.booth-base {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 14px;
  background: var(--grad);
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(255,45,120,.6), 0 0 40px rgba(255,45,120,.3);
}

/* glow pulse under base */
.booth-base::after {
  content: '';
  position: absolute;
  inset: -4px -10px;
  border-radius: 50px;
  background: var(--grad);
  opacity: .2;
  filter: blur(8px);
  animation: glow-pulse 2s ease-in-out infinite;
}

/* person standing on platform */
.booth-person {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.6rem;
  line-height: 1;
  animation: person-bob 2s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(155,39,255,.5));
  z-index: 2;
}
@keyframes person-bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-5px); }
}

/* rotating arm wrapper — spins full 360 around center */
.booth-arm-wrapper {
  position: absolute;
  inset: 0;
  animation: spin 4s linear infinite;
}

/* the arm rod */
.booth-arm {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 3px;
  margin-top: -1.5px;
  background: linear-gradient(90deg, rgba(155,39,255,.0), rgba(155,39,255,.8), var(--pink));
  border-radius: 3px;
  transform-origin: 0 50%;
  transform: rotate(-30deg);
  box-shadow: 0 0 8px rgba(255,45,120,.5);
}

/* camera head at end of arm */
.booth-cam {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%) rotate(30deg); /* counter-rotate so cam stays upright */
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255,45,120,.8));
}

/* red recording dot that pulses */
.booth-rec {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,30,30,.15);
  border: 1px solid rgba(255,60,60,.4);
  border-radius: 50px;
  padding: 3px 9px 3px 6px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #ff4444;
  text-transform: uppercase;
}
.booth-rec::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3333;
  box-shadow: 0 0 6px #ff3333;
  animation: rec-blink 1s step-start infinite;
}
@keyframes rec-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* label below */
.booth-label {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booth-label span {
  background: var(--grad);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255,45,120,.4);
}
.booth-badge {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid rgba(155,39,255,.3);
  padding: 5px 12px;
  border-radius: 50px;
}

@keyframes glow-pulse {
  0%,100% { opacity: .2; }
  50%      { opacity: .5; }
}

/* ===== JAK DZIAŁA ===== */
#jak-dziala {
  background: var(--dark);
  text-align: center;
}
#jak-dziala h2 { text-align: center; }
#jak-dziala .section-tag { display: block; text-align: center; }

.steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: var(--card);
  border: 1px solid rgba(155,39,255,.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.step:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.step::before {
  content: attr(data-step);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

.step-arrow { font-size: 1.5rem; color: rgba(155,39,255,.4); flex-shrink: 0; }

/* ===== CENNIK ===== */
#cennik {
  background: var(--dark2);
  text-align: center;
}
#cennik h2, #cennik .section-tag { text-align: center; display: block; }
#cennik .section-sub { margin: 0 auto 3rem; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--card);
  border: 1px solid rgba(155,39,255,.15);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.price-card:hover {
  border-color: rgba(155,39,255,.4);
  transform: translateY(-6px);
}
.price-card.featured {
  border: 2px solid var(--purple);
  box-shadow: 0 0 60px rgba(155,39,255,.2);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.price-header h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.price-tag { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: .25rem; }
.price-amount { font-size: 3rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--muted); }
.price-duration { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; font-weight: 600; }

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.price-features li { font-size: .85rem; color: var(--text); }

.pricing-note {
  margin-top: 2rem;
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}

/* ===== DLACZEGO MY ===== */
#dlaczego-my { background: var(--dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(155,39,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .3s;
}
.feature-card:hover {
  border-color: rgba(155,39,255,.35);
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(155,39,255,.15);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ===== GALERIA ===== */
#galeria {
  background: var(--dark2);
  text-align: center;
}
#galeria h2, #galeria .section-tag { text-align: center; display: block; }
#galeria .section-sub { margin: 0 auto 3rem; text-align: center; }

.gallery-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--card);
  border: 2px dashed rgba(155,39,255,.25);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  gap: 1rem;
}
.gallery-cs-icon { font-size: 3.5rem; }
.gallery-coming-soon h3 { font-size: 1.5rem; font-weight: 800; }
.gallery-coming-soon p { color: var(--muted); max-width: 520px; line-height: 1.7; }
.gallery-cs-sub { font-size: .85rem !important; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gi-1 { background: linear-gradient(135deg, #1a0a2e 0%, #3d1a6b 100%); }
.gi-2 { background: linear-gradient(135deg, #1a0818 0%, #6b0a3d 100%); }
.gi-3 { background: linear-gradient(135deg, #0a1a2e 0%, #0a3d6b 100%); }
.gi-4 { background: linear-gradient(135deg, #0a2e1a 0%, #0a6b3d 100%); }
.gi-5 { background: linear-gradient(135deg, #2e1a0a 0%, #6b3d0a 100%); }
.gi-6 { background: linear-gradient(135deg, #1a1a0a 0%, #4a4a0a 100%); }

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

.gallery-item::before {
  content: "";
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover::before { opacity: .8; transform: translate(-50%,-60%) scale(1.2); }

.gallery-note { font-size: .85rem; color: var(--muted); font-style: italic; }

/* ===== FAQ ===== */
#faq { background: var(--dark2); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
  max-width: 820px;
}

.faq-item {
  background: var(--card);
  border: 1px solid rgba(155,39,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: rgba(155,39,255,.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--pink); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(155,39,255,.4);
  position: relative;
  transition: all .3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: all .3s;
  top: 50%; left: 50%;
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }

.faq-item.open .faq-icon { border-color: var(--pink); background: rgba(255,45,120,.1); }
.faq-item.open .faq-icon::before { background: var(--pink); }
.faq-item.open .faq-icon::after  { transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer strong { color: var(--text); }

/* ===== OPINIE ===== */
#opinie { background: var(--dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--card);
  border: 1px solid rgba(155,39,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
}
.review-stars { font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .9rem; }
.review-author span { font-size: .75rem; color: var(--muted); }

/* ===== KONTAKT ===== */
#kontakt { background: var(--dark2); }


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info h3 { font-size: 1.3rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: .95rem; color: var(--text); }
.contact-item a:hover { color: var(--pink); }

.social-links {
  display: none; /* tymczasowo ukryte */
  /* display: flex; */
  gap: 1rem;
  margin-top: 2.5rem;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(155,39,255,.3);
  transition: all .3s;
  color: var(--muted);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { border-color: var(--purple); color: var(--text); background: rgba(155,39,255,.1); transform: translateY(-2px); }
.social-btn.instagram:hover { border-color: var(--pink); background: rgba(255,45,120,.1); color: var(--pink); }
.social-btn.tiktok:hover { border-color: var(--blue); background: rgba(0,195,255,.1); color: var(--blue); }

/* ===== FORMULARZ ===== */
.contact-form {
  background: var(--card);
  border: 1px solid rgba(155,39,255,.15);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(155,39,255,.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(155,39,255,.15);
}
.form-group select option { background: var(--dark2); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .75rem; color: var(--muted); margin-top: .75rem; text-align: center; }

/* ===== FOOTER ===== */
#footer {
  background: var(--dark);
  border-top: 1px solid rgba(155,39,255,.1);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-links h4, .footer-contact h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--pink); }
.footer-contact p { font-size: .88rem; color: var(--muted); margin-bottom: .5rem; }
.footer-contact a { color: var(--muted); transition: color .2s; }
.footer-contact a:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid rgba(155,39,255,.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .78rem; color: var(--muted); }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal.show { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--card);
  border: 1px solid rgba(155,39,255,.3);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 0 80px rgba(155,39,255,.3);
  transform: scale(.9);
  transition: transform .3s;
}
.modal.show .modal-box { transform: scale(1); }
.modal-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal-box h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.modal-box p { color: var(--muted); margin-bottom: 2rem; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 2rem auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #hero > .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(8,8,16,.97);
    border-left: 1px solid rgba(155,39,255,.15);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right .3s ease;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }

  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .hero-stats { gap: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 20px; }
}
