.newsletter-section {
  width: 75%;
  margin: auto;
  padding: 120px 0;
  display: flex;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.newsletter-inner {
  max-width: 520px;
  width: 100%;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #28a4fa, #60d9d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.newsletter-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #28a4fa;
}

.newsletter-form button {
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  background: #28a4fa;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.newsletter-form button:hover {
  opacity: 0.85;
}

.newsletter-note {
  font-size: 12px;
  opacity: 0.5;
}

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 26, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-family: "Montserrat", sans-serif;
}

.success-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.success-box {
  background: #11162a;
  border-radius: 18px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28a4fa, #60d9d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.success-box h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.success-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 26px;
}

.success-box button {
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #28a4fa, #60d9d4);
  color: #fff;
}

@media (max-width: 600px) {
  .newsletter-form{
    display: block;
  }

  .newsletter-form input{
    margin-bottom: 10px;
  }

  .newsletter-form button{
    width: 50%;
  }
}

/* ================================
   APPLE STYLE ORB BACKGROUND
================================ */

/* orb container */
.orb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* base orb */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  transform: translateZ(0);
}

/* individual orbs */
.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #28a4fa, transparent 65%);
  top: -120px;
  left: -120px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #60d9d4, transparent 65%);
  bottom: -140px;
  right: -120px;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #4fc3f7, transparent 65%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.35;
}
