* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0f1113;
  color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0f1113;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  z-index: 100;
}

.navbar nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
}

.navbar nav a:hover {
  color: #00b3b3;
}

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

.section {
  padding: 120px 10%;
  min-height: 100vh;
}

.dark {
  background: #15181b;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: #00b3b3;
  color: #000;
  text-decoration: none;
  width: fit-content;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  border: 2px solid #00b3b3;
  padding: 40px;
  text-align: center;
}

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

.price-card {
  border: 2px solid #00b3b3;
  padding: 30px;
}

.highlight {
  background: #00b3b3;
  color: #000;
}

footer {
  padding: 20px;
  text-align: center;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar.shrink {
  padding: 8px 40px;
  background: rgba(15,17,19,0.95);
}

.navbar nav a {
  position: relative;
}

.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #00b3b3;
  transition: width 0.3s ease;
}

.navbar nav a.active::after,
.navbar nav a:hover::after {
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at 20% 20%, #00b3b330, transparent 40%),
    radial-gradient(circle at 80% 80%, #00b3b320, transparent 40%),
    #0f1113;
}

.accent {
  color: #00b3b3;
}

.btn-big {
  font-size: 1.1rem;
  padding: 16px 32px;
}

.badge {
  display: inline-block;
  background: #000;
  color: #00b3b3;
  padding: 6px 12px;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #00b3b3;
  transition: 0.3s;
}

/* MOBILE*/
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0f1113;
    flex-direction: column;
    width: 100%;
    display: none;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 20px;
    border-bottom: 1px solid #222;
  }
}



.logo-anim rect {
  fill: #00b3b3;
  animation: pulse 1.8s infinite;
}

.logo-anim rect:nth-child(1) { animation-delay: 0s; }
.logo-anim rect:nth-child(2) { animation-delay: .15s; }
.logo-anim rect:nth-child(3) { animation-delay: .3s; }
.logo-anim rect:nth-child(4) { animation-delay: .45s; }
.logo-anim rect:nth-child(5) { animation-delay: .6s; }
.logo-anim rect:nth-child(6) { animation-delay: .75s; }

@keyframes pulse {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}

.section-sub {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: .8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.why-card {
  padding: 30px;
  border-left: 4px solid #00b3b3;
  background: #15181b;
}

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

/* LOGO SVG */
.logo-anim rect {
  fill: #00b3b3;
  opacity: 0.3;
  animation: logoPulse 1.8s infinite ease-in-out;
}

/* OPÓŹNIENIA – KAŻDY ELEMENT */
.logo-anim rect:nth-child(1) { animation-delay: 0s; }
.logo-anim rect:nth-child(2) { animation-delay: 0.15s; }
.logo-anim rect:nth-child(3) { animation-delay: 0.3s; }
.logo-anim rect:nth-child(4) { animation-delay: 0.45s; }
.logo-anim rect:nth-child(5) { animation-delay: 0.6s; }
.logo-anim rect:nth-child(6) { animation-delay: 0.75s; }

/* TEKST */
.logo-text {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ANIMACJA */
@keyframes logoPulse {
  0%   { opacity: 0.3; }
  50%  { opacity: 1; }
  100% { opacity: 0.3; }
}

/* HAMBURGER ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}


.process-step {
  padding: 30px;
  background: #15181b;
  border-top: 3px solid #00b3b3;
}

.process-step span {
  font-size: 2rem;
  color: #00b3b3;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 30px;
  text-align: center;
}

.trust-item h3 {
  font-size: 2.5rem;
  color: #00b3b3;
}

.outsourcing-benefits {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}

.outsourcing-benefits li {
  background: #15181b;
  padding: 25px;
  border-left: 4px solid #00b3b3;
}

.outsourcing-benefits strong {
  color: #00b3b3;
}

.contact-steps {
  margin: 40px 0;
  padding-left: 20px;
  border-left: 4px solid #00b3b3;
}

.contact-steps ul {
  list-style: none;
  padding: 0;
}

.contact-steps li {
  margin: 10px 0;
}

.contact-cta {
  margin-top: 30px;
  font-weight: 600;
  color: #00b3b3;
}

