#ux-features {
  position: relative;
  margin-bottom: 7rem;
  overflow: visible;
  font-family: 'Geist', sans-serif;
}


#ux-features .ux-f-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

#ux-features .ux-f-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.75rem;
  background: rgba(217, 74, 74, 0.08);
  border: 1px solid rgba(217, 74, 74, 0.15);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #D94A4A;
}

#ux-features .ux-f-badge svg {
  width: 12px;
  height: 12px;
}

#ux-features .ux-f-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

#ux-features .ux-f-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  max-width: 550px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#ux-features .ux-f-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  #ux-features .ux-f-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  #ux-features .ux-f-card-sm {
    grid-column: span 3;
  }
  #ux-features .ux-f-card-md {
    grid-column: span 6;
  }
  #ux-features .ux-f-card-lg {
    grid-column: span 6;
  }
  #ux-features .ux-f-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  #ux-features .ux-f-grid {
    grid-template-columns: repeat(7, 1fr);
  }
  #ux-features .ux-f-card-sm {
    grid-column: span 2;
  }
  #ux-features .ux-f-card-md {
    grid-column: span 3;
  }
  #ux-features .ux-f-card-lg {
    grid-column: span 4;
  }
  #ux-features .ux-f-title {
    font-size: 2rem;
  }
}

#ux-features .ux-f-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#ux-features .ux-f-card:hover {
  border-color: rgba(217, 74, 74, 0.12);
  box-shadow: 0 0 30px rgba(217, 74, 74, 0.03);
}

#ux-features .ux-f-card-visual {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#ux-features .ux-f-card-info {
  padding: 1rem 1.25rem;
  width: 100%;
}

#ux-features .ux-f-card-info-title {
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

#ux-features .ux-f-card-info-desc {
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
}

#globe-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(217, 74, 74, 0.03) 0%, transparent 70%);
  overflow: hidden;
}

#shield-animation-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(217, 74, 74, 0.06) 0%, rgba(217, 74, 74, 0.02) 30%, transparent 65%);
}

.shield-icon {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 8px rgba(217, 74, 74, 0.25));
  animation: ux-f-shield-pulse 3s ease-in-out infinite;
}

@keyframes ux-f-shield-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(217, 74, 74, 0.25)) drop-shadow(0 0 20px rgba(217, 74, 74, 0.1));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(217, 74, 74, 0.35)) drop-shadow(0 0 30px rgba(217, 74, 74, 0.15));
  }
}

.wave-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.wave {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(217, 74, 74, 0.5);
  animation: ux-f-wave-expand 5s ease-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 1.25s; }
.wave-3 { animation-delay: 2.5s; }

@keyframes ux-f-wave-expand {
  0% { width: 40px; height: 40px; opacity: 0.7; }
  40% { opacity: 0.4; }
  100% { width: 350px; height: 350px; opacity: 0; }
}

#ux-features .ux-f-delivery {
  width: 80%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: 'Geist', sans-serif;
}

#ux-features .ux-f-delivery-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

#ux-features .ux-f-delivery-order-id {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 400;
}

#ux-features .ux-f-delivery-status {
  color: #D94A4A;
  font-size: 0.78rem;
  font-weight: 600;
}

#ux-features .ux-f-delivery-bar {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 6px;
  padding-bottom: 6px;
}

#ux-features .ux-f-delivery-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

#ux-features .ux-f-delivery-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #D94A4A, #E06B6B);
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(217, 74, 74, 0.3);
  animation: ux-f-progress-fill 7s ease-in-out infinite;
}

@keyframes ux-f-progress-fill {
  0% { width: 0%; }
  60% { width: 100%; }
  80% { width: 100%; }
  100% { width: 0%; }
}

#ux-features .ux-f-delivery-details {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 0 10px 10px;
  border-top: none;
}

#ux-features .ux-f-delivery-details-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: rgba(217, 74, 74, 0.1);
  border: 1px solid rgba(217, 74, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D94A4A;
}

#ux-features .ux-f-delivery-details-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

#ux-features .ux-f-delivery-details-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 500;
}

#ux-features .ux-f-delivery-details-sub {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-weight: 400;
}

#ux-features .ux-f-support-text {
  text-align: center;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#ux-features .ux-f-support-text span {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #D94A4A 0%, #E06B6B 50%, #6B1B1B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

#ux-features .ux-f-menu-outer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 2rem 0;
  box-sizing: border-box;
}

#ux-features .ux-f-menu {
  width: 60%;
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  gap: 0;
  overflow: hidden;
  background: rgba(10, 12, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#ux-features .ux-f-menu-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  cursor: pointer;
}

#ux-features .ux-f-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

#ux-features .ux-f-menu-icon.ux-f-menu-icon-active {
  border-color: rgba(217, 74, 74, 0.4);
  background: rgba(217, 74, 74, 0.08);
  color: #D94A4A;
}

#ux-features .ux-f-menu-icon.ux-f-menu-icon-hidden {
  visibility: hidden;
}

#ux-features .ux-f-menu-label {
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  min-width: 0;
}

#ux-features .ux-f-toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

#ux-features .ux-f-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

#ux-features .ux-f-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: background 0.3s ease;
}

#ux-features .ux-f-toggle-slider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}

#ux-features .ux-f-toggle input:checked + .ux-f-toggle-slider {
  background: rgba(217, 74, 74, 0.3);
}

#ux-features .ux-f-toggle input:checked + .ux-f-toggle-slider::after {
  transform: translateX(18px);
  background: #D94A4A;
}

#ux-features .ux-f-range {
  width: 120px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}

#ux-features .ux-f-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D94A4A;
  cursor: pointer;
}

#ux-features .ux-f-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D94A4A;
  border: none;
  cursor: pointer;
}

@media (max-width: 639px) {
  #notification-container .notification {
    width: calc(100% - 20px);
  }
  #ux-features .ux-f-title {
    font-size: 1.3rem;
  }
  #ux-features .ux-f-card-visual {
    height: 180px;
  }
  #ux-features .ux-f-card-visual img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    margin: auto;
    display: block;
  }
}