/*---=========================
  Premium Announcement Popups CSS
=========================---*/

/* Base wrapper and Magnific Popup override */
.popup-wrapper {
  display: none;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.mfp-inline-holder .mfp-content {
  text-align: center !important;
}

.mfp-content .popup-wrapper {
  display: inline-block !important;
  text-align: left;
  vertical-align: middle;
}

/* Custom Magnific close button */
.mfp-close-btn-in .mfp-close {
  color: #1e293b !important;
  background: #ffffff !important;
  opacity: 0.9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: absolute !important;
  right: 15px !important;
  top: 15px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  font-size: 24px;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.mfp-close-btn-in .mfp-close:hover {
  transform: scale(1.1);
  background: #f1f5f9 !important;
}

/* Common Typography & Buttons */
.popup_main-content {
  padding: 40px;
}

.popup_main-content h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.popup_main-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
}

.popup-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #00B67A;
  border: 1px solid #00B67A;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 182, 122, 0.3);
}

.popup-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 182, 122, 0.4);
  color: #ffffff;
}

/* Subscription Form */
.subscribe-form {
  margin-top: 20px;
}

.subscribe-form .form_control {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  color: #0f172a;
  background: #f8fafc;
  margin-bottom: 14px;
  transition: all 0.2s ease;
}

.subscribe-form .form_control:focus {
  border-color: #00B67A;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 182, 122, 0.15);
}

.subscribe-form .popup-main-btn {
  width: 100%;
  height: 52px;
}

/* --- POPUP TYPES --- */

/* Type 1: Image only */
.popup-one {
  max-width: 500px;
  padding: 0;
}

.popup-one .popup_main-content {
  padding: 0;
  line-height: 0;
}

.popup-one img {
  width: 100%;
  height: auto;
  display: block;
}

/* Type 2: Background Image + Centered Content */
.popup-two {
  max-width: 600px;
  text-align: center;
}

.popup-two .popup_main-content {
  padding: 60px 40px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.popup-two .popup_main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  /* Fallback overlay */
  z-index: -1;
  border-radius: 24px;
}

/* Type 3, 4, 6: Split Layout (Left Image, Right Content) */
.popup-three,
.popup-four,
.popup-six {
  max-width: 800px;
}

.popup-three .popup_main-content,
.popup-four .popup_main-content,
.popup-six .popup_main-content {
  display: flex;
  padding: 0;
  align-items: stretch;
}

.popup-three .left-bg,
.popup-four .left-bg,
.popup-six .left-bg {
  width: 42%;
  min-height: 450px;
  background-size: cover;
  background-position: center;
}

.popup-three .right-content,
.popup-four .right-content,
.popup-six .right-content {
  width: 58%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-three .right-content h1,
.popup-four .right-content h1,
.popup-six .right-content h1 {
  font-size: 28px;
}


/* Type 5: Background Image + Centered Content (Newsletter) */

.popup-five .popup_main-content {
  padding: 60px 40px;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.popup-five .popup_main-content .icon {
  max-width: 100px;
  margin-inline: auto;
  margin-bottom: 25px;
}

.popup-five .popup_main-content h1 {
  font-size: 32px;
  margin-bottom: 18px;
  letter-spacing: unset;
}

.popup-five .popup_main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  z-index: -1;
  border-radius: 0;
}

.popup-five .subscribe-form {
  margin-top: 20px;
  max-width: 350px;
  margin-inline: auto;
}

.popup-five .subscribe-form .form_control {
  border-radius: 0;
}

.popup-five .subscribe-form .popup-main-btn {
  border-radius: 0;
}

@media (max-width: 768px) {
  .popup-five .popup_main-content h1 {
    font-size: 24px;
  }

  .popup-five .popup_main-content {
    padding: 60px 20px;
  }
}

/* type-5 css End */

/* popup-seven css start */
/* Type 7: Centered Countdown */
.popup-seven {
  text-align: center;
  border-radius: 0;
}

.popup-seven .popup_main-content {
  padding: 0px 0px;
  border-radius: 0;
  position: relative;
  z-index: 1;
  display: flex;
}

.popup-seven .popup_main-content h1 {
  letter-spacing: unset;
}

.popup-seven .popup_main-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.popup-seven .popup_main-content .right-content {
  background-color: #930077;
  width: 50%;
  height: 100%;
  padding: 90px 15px;
  text-align: center;
  margin-left: 50%;
}

.popup-seven .popup_main-content .syotimer__body {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.announcement-popup-item[data-type="7"] .syotimer-cell__unit {
  color: rgba(255, 255, 255, 0.9);
}

.popup-seven .popup_main-content .popup-seven-btn {
  font-size: 15px;
  box-shadow: 0 7px 5px rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
  .popup-seven .popup_main-content {
    flex-direction: column;
  }

  .popup-seven .popup_main-content .left-bg {
    position: unset;
    width: 100%;
    height: 350px;
  }

  .popup-seven .popup_main-content .right-content {
    padding: 30px;
    margin-left: unset;
    width: 100%;
  }
}

/* popup-seven css End */

/* Countdown Timer Styling */
.announcement-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px;
  gap: 12px;
}

.syotimer-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
}

.syotimer-cell__value {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.syotimer-cell__unit {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* Dark mode overrides for color schemas (Type 2, 5, 7 or colored backgrounds) */
.announcement-popup-item[data-type="2"] .popup_main-content h1,
.announcement-popup-item[data-type="2"] .popup_main-content p,
.announcement-popup-item[data-type="3"] .right-content h1,
.announcement-popup-item[data-type="3"] .right-content p,
.announcement-popup-item[data-type="5"] .popup_main-content h1,
.announcement-popup-item[data-type="5"] .popup_main-content p,
.announcement-popup-item[data-type="7"] .popup_main-content h1,
.announcement-popup-item[data-type="7"] .popup_main-content p {
  color: #ffffff;
}

.announcement-popup-item[data-type="2"] .syotimer-cell__value,
.announcement-popup-item[data-type="3"] .syotimer-cell__value,
.announcement-popup-item[data-type="5"] .syotimer-cell__value,
.announcement-popup-item[data-type="7"] .syotimer-cell__value {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.announcement-popup-item[data-type="2"] .syotimer-cell__unit,
.announcement-popup-item[data-type="3"] .syotimer-cell__unit,
.announcement-popup-item[data-type="5"] .syotimer-cell__unit,
.announcement-popup-item[data-type="7"] .syotimer-cell__unit {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsiveness */
@media (max-width: 768px) {

  .popup-three .popup_main-content,
  .popup-four .popup_main-content,
  .popup-six .popup_main-content {
    flex-direction: column;
  }

  .popup-three .left-bg,
  .popup-four .left-bg,
  .popup-six .left-bg {
    width: 100%;
    min-height: 250px;
  }

  .popup-three .right-content,
  .popup-four .right-content,
  .popup-six .right-content {
    width: 100%;
    padding: 30px;
  }

  .popup_main-content {
    padding: 30px;
  }

  .popup_main-content h1 {
    font-size: 22px;
  }

  .syotimer-cell {
    width: 60px;
  }

  .syotimer-cell__value {
    height: 52px;
    font-size: 20px;
    border-radius: 10px;
  }
}

/* ------new design start----- */
.mfp-close-btn-in .mfp-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: var(--light-gray);
  border: 1px solid rgba(0, 114, 255, 0.08);
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--body-color);
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.mfp-close-btn-in .mfp-close:hover {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  transform: rotate(90deg) scale(1.05) !important;
  border-color: var(--primary-color) !important;
}

/* ------Popup Card 7 start----- */
.popup-seven {
  max-width: 700px;
  width: 100%;
  border-radius: 2rem;
}

.popup-seven .countdown-wrapper {
  margin-top: 0.8rem;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 0.7rem 0.5rem;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.popup-seven .countdown-wrapper .countdown-item {
  padding-top: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.popup-seven .countdown-wrapper .countdown-item .num {
  font-size: 1.2rem;
  line-height: 1.3;
  display: block;
}

.popup-seven .countdown-item .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.popup-seven .popup-content {
  text-align: start;
}

.popup-seven .pricing-row {
  justify-content: flex-start;
}

.popup-seven .bundle-features {
  max-width: 300px;
}

.popup-card {
  background: var(--white);
  padding: 2.2rem 2.2rem 2.2rem;
  box-shadow: 0 50px 100px -20px rgba(3, 16, 49, 0.25);
  position: relative;
  animation: popupSlide 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  overflow: hidden;
  border: 1px solid rgba(0, 114, 255, 0.08);
}

/* subtle gradient accent */
.popup-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.popup-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

@keyframes popupSlide {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── Close button ── */
.popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: var(--light-gray);
  border: 1px solid rgba(0, 114, 255, 0.08);
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--body-color);
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.popup-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg) scale(1.05);
  border-color: var(--primary-color);
}

/* ── Layout: Offer Box (with 50% OFF + Countdown) + Content ── */
.popup-layout {
  display: flex;
  gap: 1.8rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* ── Offer Box with Countdown ── */
.popup-offer-box {
  max-width: 280px;
  width: 100%;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #FBA31C, #F59E0B);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  box-shadow: 0 8px 30px rgba(251, 163, 28, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 1.2rem 1rem;
}

.popup-offer-box .offer-percent {
  font-family: var(--inter);
  font-weight: 900;
  font-size: 3.8rem;
  color: #1e293b;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
  letter-spacing: -0.05em;
}

.popup-offer-box .offer-label {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1e293b;
  opacity: 0.8;
  margin-top: -0.2rem;
}

/* ── Countdown inside offer box ── */
.countdown-wrapper {
  margin-top: 0.8rem;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 0.7rem 0.5rem;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-label {
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1e293b;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--inter);
  font-weight: 800;
  color: #1e293b;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  padding: 0.2rem 0.4rem;
  min-width: 2.4rem;
  text-align: center;
  backdrop-filter: blur(4px);
}

.countdown-item .num {
  font-size: 1.5rem;
  line-height: 1.2;
  display: block;
}

.countdown-item .label {
  font-size: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  letter-spacing: 0.04em;
}

.countdown-separator {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(30, 41, 59, 0.4);
  display: flex;
  align-items: center;
}

/* ── Content Section ── */
.popup-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-blue-gray);
  border: 1px solid rgba(0, 114, 255, 0.1);
  color: var(--primary-color);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 15px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  width: fit-content;
  font-family: var(--inter);
  line-height: 1;
}

.popup-badge i {
  font-size: 0.6rem;
}

.popup-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-family: var(--inter);
}

.popup-title .highlight {
  color: var(--primary-color);
}

.popup-subtitle {
  color: var(--body-color);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.3rem;
  font-family: var(--roboto);
}

.bundle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  margin: 0.75rem 0 1rem;
}

.bundle-features .feature {
  background: var(--light-gray);
  border: 1px solid rgba(0, 114, 255, 0.06);
  border-radius: 100px;
  padding: 9px 12px;
  line-height: 1;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--inter);
}

.bundle-features .feature i {
  color: var(--primary-color);
  font-size: 12px;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.price-current {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  font-family: var(--inter);
}

.price-current .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--body-color);
  margin-right: 0.1rem;
}

.price-original {
  font-size: 0.95rem;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}

.price-discount {
  background: var(--yellow);
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 700;
  padding: 9px 15px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(251, 163, 28, 0.3);
  font-family: var(--inter);
  line-height: 1;
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}

.btn-primary {
  background: var(--bg-gradient-1);
  color: var(--white);
  box-shadow: 0 8px 28px -8px rgba(0, 114, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-gradient-2);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px -10px rgba(0, 114, 255, 0.5);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: var(--light-gray);
  color: var(--heading-color);
  border: 1px solid rgba(0, 114, 255, 0.08);
}

.btn-secondary:hover {
  background: var(--light-blue-gray);
  transform: translateY(-3px);
  border-color: var(--primary-color);
  color: #000;
}

.popup-footer {
  margin-top: 1rem;
  font-size: 12px;
  color: var(--body-color);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--roboto);
}

.popup-footer i {
  color: var(--primary-color);
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .popup-seven .popup-layout {
    gap: 0.8rem;
  }

  .popup-seven .popup-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 575px) {
  .popup-seven .popup-layout {
    flex-direction: column;
  }

  .popup-seven .popup-offer-box {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ------Popup Card 7 End----- */

/* ------Popup Card 6 start----- */

/* ── Top: Project Icon & Badge ── */
.popup-six {
  max-width: 680px;
}

.popup-six .pricing-row {
  justify-content: flex-start;
}

.popup-six .countdown-wrapper {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background: #F2F5FE;
  border: 1px solid rgba(0, 114, 255, 0.06);
  padding: 0.7rem 1rem;
}

.popup-six .countdown-label {
  color: #0072ff;
  margin-bottom: 0;
  line-height: 1;
}

.popup-six .countdown-item {
  padding-top: 4px;
}

.popup-six .countdown-item .label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.popup-six .feature-item span {
  font-family: var(--inter);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.3;
}

.popup-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.project-icon {
  width: 70px;
  height: 70px;
  border-radius: 1.2rem;
  background: var(--bg-gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 114, 255, 0.25);
  flex-shrink: 0;
}

.project-meta {
  flex: 1;
}

.project-meta .badge {
  background: var(--yellow);
  color: var(--white);
  font-weight: 700;
  font-size: 10px;
  padding: 7px 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  font-family: var(--inter);
  margin-bottom: 0.2rem;
  line-height: 16px;
}

.project-meta h2 {
  font-family: var(--inter);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.project-meta h2 .highlight {
  color: var(--primary-color);
}

/* ── Project Description ── */
.project-description {
  color: var(--body-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-gray);
  border-radius: 0.8rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(0, 114, 255, 0.05);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 0.85rem;
  width: 1.2rem;
}

.feature-item span {
  font-family: var(--inter);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--heading-color);
}

/* ── Pricing Row ── */
.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.price-current {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  font-family: var(--inter);
}

.price-current .currency {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--body-color);
  margin-right: 0.1rem;
}

.price-original {
  font-size: 1rem;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}


/* ── Countdown ── */
.countdown-timer {
  display: flex;
  gap: 0.3rem;
  font-family: var(--inter);
  font-weight: 800;
  color: var(--heading-color);
}

.countdown-item {
  background: var(--white);
  border-radius: 0.4rem;
  padding: 0.1rem 0.4rem;
  min-width: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.countdown-item .num {
  font-size: 1.2rem;
  line-height: 1.3;
  display: block;
}

.countdown-item .label {
  font-size: 0.35rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  letter-spacing: 0.04em;
}

/* ── Actions ── */
.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .popup-six .features-grid {
    grid-template-columns: 1fr;
  }

}


/* ------Popup Card 6 End----- */

/* ------Popup Card 5 start----- */
.popup-five {
  max-width: 580px;
  width: 100%;
}

.popup-five .popup-content {
  text-align: center;
}

/* ── Badge ── */
.popup-five .popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-blue-gray);
  border: 1px solid rgba(0, 114, 255, 0.1);
  color: var(--primary-color);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
  font-family: var(--inter);
  margin-inline: auto;
  line-height: 1.5;
}

.popup-five .popup-badge i {
  font-size: 0.55rem;
}

/* ── Title ── */
.popup-five .popup-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-family: var(--inter);
}

.popup-five .popup-title .highlight {
  color: var(--primary-color);
}

/* ── Subtitle ── */
.popup-five .popup-subtitle {
  color: var(--body-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0.5rem 0 1.2rem;
  font-family: var(--roboto);
}

/* ── Offer Box ── */
.popup-five .offer-box {
  background: var(--light-blue-gray);
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 114, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.popup-five .offer-box .offer-icon {
  font-size: 2.2rem;
  color: var(--yellow);
}

.popup-five .offer-box .offer-text {
  font-family: var(--inter);
  font-weight: 700;
  color: var(--heading-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.popup-five .offer-box .offer-text span {
  color: var(--primary-color);
}

/* ── Form ── */
.popup-five .lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0.5rem 0 0.8rem;
}

.popup-five .form-group {
  position: relative;
}

.popup-five .form-group .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--body-color);
  opacity: 0.5;
  font-size: 0.9rem;
}

.popup-five .form-group input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border: 1px solid rgba(0, 114, 255, 0.1);
  border-radius: 0.8rem;
  font-family: var(--roboto);
  font-size: 0.9rem;
  color: var(--heading-color);
  background: var(--light-gray);
  transition: all 0.3s ease;
  outline: none;
  line-height: 1.2;
}

.popup-five .form-group input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.08);
  background: var(--white);
}

.popup-five .form-group input::placeholder {
  color: #aaa;
}

.popup-five .form-group input:focus::placeholder {
  opacity: 0.5;
}

/* ── Submit Button ── */
.popup-five .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 0.8rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  background: var(--bg-gradient-1);
  color: var(--white);
  box-shadow: 0 8px 28px -8px rgba(0, 114, 255, 0.4);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.popup-five .btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-gradient-2);
  opacity: 0;
  transition: opacity 0.3s;
}

.popup-five .btn-submit:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 40px -10px rgba(0, 114, 255, 0.5);
}

.popup-five .btn-submit:hover::after {
  opacity: 1;
}

.popup-five .btn-submit span,
.popup-five .btn-submit i {
  position: relative;
  z-index: 1;
}


/* ── Success Message ── */
.popup-five .success-message {
  display: none;
  padding: 1.5rem 1rem;
  text-align: center;
}

.popup-five .success-message .success-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.popup-five .success-message h3 {
  font-family: var(--inter);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.popup-five .success-message p {
  color: var(--body-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.popup-five .success-message .btn-close-success {
  margin-top: 1rem;
  background: var(--light-gray);
  color: var(--heading-color);
  border: 1px solid rgba(0, 114, 255, 0.08);
  padding: 0.6rem 2rem;
  border-radius: 100px;
  font-family: var(--inter);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-five .success-message .btn-close-success:hover {
  background: var(--light-blue-gray);
  border-color: var(--primary-color);
}



/* ------Popup Card 5 End----- */

/* ------Popup Card 4 start----- */
.popup-four {
  max-width: 620px;
}

.popup-four .popup-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ── Badge ── */
.popup-four .popup-badge {
  margin-inline: auto;
}

.popup-four .popup-badge i {
  font-size: 0.55rem;
}

/* ── Title ── */
.popup-four .popup-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-family: var(--inter);
}

.popup-four .popup-title .highlight {
  color: var(--primary-color);
}

/* ── Subtitle ── */
.popup-four .popup-subtitle {
  color: var(--body-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0.5rem 0 1rem;
  font-family: var(--roboto);
}

/* ── Features / Products Grid ── */
.popup-four .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 0.8rem 0 1.2rem;
}

.popup-four .product-item {
  background: var(--light-gray);
  border-radius: 0.8rem;
  padding: 0.8rem 0.4rem;
  border: 1px solid rgba(0, 114, 255, 0.05);
  text-align: center;
}

.popup-four .product-item .icon {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.popup-four .product-item h5 {
  font-family: var(--inter);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--heading-color);
}

.popup-four .product-item .tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(0, 114, 255, 0.08);
  padding: 6px 13px;
  border-radius: 100px;
  display: inline-block;
  line-height: 1;
  margin-top: 10px;
}

/* ── Pricing & Offer Badge ── */
.popup-four .pricing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 0.8rem 0 1rem;
}

.popup-four .price-discount {
  font-size: 1.35rem;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff9f43 0%, #ff5252 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 82, 82, 0.35);
  display: inline-block;
  line-height: 1.2;
}

.popup-four .price-current {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  font-family: var(--inter);
}

.popup-four .price-current .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--body-color);
  margin-right: 0.1rem;
}

.popup-four .price-original {
  font-size: 0.95rem;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}

/* ── Countdown ── */

.popup-four .countdown-timer {
  display: flex;
  gap: 0.3rem;
  font-family: var(--inter);
  font-weight: 800;
  color: var(--heading-color);
}

.popup-four .countdown-item {
  background: var(--white);
  border-radius: 0.4rem;
  padding: 0.1rem 0.4rem;
  min-width: 1.8rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding-top: 3px;
  padding-bottom: 5px;
}

.popup-four .countdown-item .num {
  font-size: 1.3rem;
  line-height: 1.4;
  display: block;
}

.popup-four .countdown-item .label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ── Button ── */
.popup-four .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2.5rem;
  border-radius: 0.8rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  background: var(--bg-gradient-1);
  color: var(--white);
  box-shadow: 0 8px 28px -8px rgba(0, 114, 255, 0.4);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
}

.popup-four .btn-explore::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-gradient-2);
  opacity: 0;
  transition: opacity 0.3s;
}

.popup-four .btn-explore:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px -10px rgba(0, 114, 255, 0.5);
}

.popup-four .btn-explore:hover::after {
  opacity: 1;
}

.popup-four .btn-explore span,
.popup-four .btn-explore i {
  position: relative;
  z-index: 1;
}

.popup-four .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.popup-four .countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  background: #F2F5FE;
  border: 1px solid rgba(0, 114, 255, 0.06);
  margin-top: 0;
  margin-bottom: 15px;
}

.popup-four .countdown-wrapper .countdown-label {
  color: var(--primary-color);
  margin: 0;
  font-size: 12px;
}

@media (max-width: 400px) {
  .popup-four .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------Popup Card 4 End----- */
