/* ===============================
   TETRIS MOVING – ARCADE STYLE
   Pixel / Klocki / Retro
================================ */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #000 0%, #0b1c4d 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  width: 220px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subtitle {
  max-width: 720px;
  font-size: 1.2rem;
  margin: 20px auto 35px;
  color: #d0d6ff;
}

/* ================= CTA BUTTON ================= */

.cta {
  background: #00eaff;
  color: #000;
  padding: 18px 36px;
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 0;
  border: 4px solid #fff;
  box-shadow: 6px 6px 0 #003cff;
  transition: transform .1s linear, box-shadow .1s linear;
}

.cta:hover {
  transform: translate(3px,3px);
  box-shadow: 3px 3px 0 #003cff;
}

/* ================= FALLING KLOCKI ================= */

.falling {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.item.svg {
  position: absolute;
  top: -120px;
  width: 72px;
  image-rendering: pixelated;
  animation: fall linear infinite;
}

.item.box    { left: 12%; animation-duration: 11s; }
.item.sofa  { left: 32%; animation-duration: 15s; }
.item.lamp  { left: 58%; animation-duration: 18s; }
.item.carton{ left: 80%; animation-duration: 13s; }

@keyframes fall {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(120vh) rotate(90deg); }
}

/* ================= SECTIONS ================= */

.section {
  padding: 80px 25px;
  max-width: 1200px;
  margin: auto;
}

.section.dark {
  background: #050b22;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-left: 10px solid #00eaff;
  padding-left: 15px;
}

.section p {
  margin-bottom: 15px;
  color: #dbe1ff;
}

/* ================= SERVICES ================= */

.services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.services li {
  background: #111;
  padding: 20px;
  border: 4px solid #00eaff;
  box-shadow: 6px 6px 0 #003cff;
  font-weight: 700;
}

/* ================= PRICING ================= */

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.price-box {
  background: #111;
  padding: 25px;
  border: 4px solid #ffd100;
  box-shadow: 6px 6px 0 #ff6a00;
}

.price-box.wide {
  grid-column: span 2;
}

.price-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: #00eaff;
  margin-bottom: 15px;
}

/* ================= FOOTER ================= */

.footer {
  background: #000;
  border-top: 6px solid #00eaff;
  padding: 70px 25px 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #00eaff;
}

.footer-col p {
  font-size: .95rem;
  margin-bottom: 10px;
  color: #cfd6ff;
}

.footer a {
  color: #ffd100;
  font-weight: 700;
  text-decoration: none;
}

.footer .small {
  text-align: center;
  margin-top: 40px;
  font-size: .8rem;
  opacity: .6;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .subtitle { font-size: 1rem; }
  .price-box.wide { grid-column: span 1; }
}
