.landing {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #fff;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  overflow: hidden; /* żeby bąbelki nie wystawały */
}

/* warstwa z bąbelkami */
.bubbles::before,
.bubbles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #049FE0;
  opacity: 0.15;
  z-index: 0;
}

.bubbles::before {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -150px;
}

.bubbles::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  right: -100px;
}

/* dodatkowe bąbelki */
.landing::before,
.landing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #049FE0;
  z-index: 0;
}

.landing::before {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  opacity: 0.1;
}

.landing::after {
  width: 150px;
  height: 150px;
  bottom: 25%;
  left: 15%;
  opacity: 0.2;
}

/* treść */
.landing-inner {
  position: relative;
  color: #000;
  max-width: 700px;
  z-index: 1;
}

.landing h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #049FE0;
}

.landing p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.landing .cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: #049FE0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.landing .cta:hover {
  background: #037fb3;
  transform: translateY(-2px);
}

