body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #000;
  text-align: center;
}

main {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

.logo {
  margin-top: 2rem;
  width: 150px;
  height: 150px;
  border-radius: 100px;
  object-fit: cover;
}

.title {
  font-size: 1.8rem;
  margin: 1rem 0 0.2rem 0;
  white-space: nowrap;
}

.subtitle {
  font-size: 1.3rem;
  color: #00cc66;
  margin: 0 0 20px 0;
}

.middle-text {
  background: #111;
  color: white;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 18px;
}

.cta-button {
  background: #25d366;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
  animation: pulse 1.8s infinite;
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.10); }
  100% { transform: scale(1); }
}

..clients-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #66e0d0;
  padding: 8px 16px;
  border-radius: 40px;
  gap: 6px;
  margin: 20px auto;
  max-width: 90%;
  overflow: hidden;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  margin-left: -8px;
}

.client-text {
  font-weight: bold;
  font-size: 14px;
  color: #000;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trust-box {
  margin-top: 15px;
  padding: 10px;
  border: 1px dashed #ccc;
  display: inline-block;
  font-size: 14px;
  background: #f3fefc;
  border-radius: 8px;
}

.stars {
  vertical-align: middle;
  height: 14px;
}

.trust-logo {
  height: 14px;
  vertical-align: middle;
}

footer {
  margin: 40px 0 60px 0;
  font-size: 12px;
  color: #666;
}

.bono-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00cc66;
  color: white;
  text-align: center;
  padding: 14px 16px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  box-sizing: border-box;
  z-index: 999;
  white-space: normal;
}


.xpo-notification-wrap {
  position: fixed;
  left: 20px;
  bottom: 80px;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  border-radius: 15px;
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  display: none;
  max-width: 270px;
  text-align: left;
  line-height: 1.4;
  animation: slideIn 0.3s ease forwards;
}

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

.notif-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .client-text {
    font-size: 13px;
    white-space: normal;
  }
  .cta-button {
    font-size: 18px;
    padding: 14px 25px;
  }
  .middle-text {
    font-size: 16px;
    padding: 8px 16px;
  }
}