:root {
  --bg-primary: #0f0f23;
  --bg-secondary: #1a1a3a;
  --bg-tertiary: #252550;
  --bg-card: #16213e;
  --bg-glass: rgba(253, 205, 24, 0.12);
  --bg-glass-strong: rgba(253, 205, 24, 0.18);
  --bg-glass-dark: rgba(15, 15, 35, 0.85);
  --text-primary: #e8e8f0;
  --text-secondary: #b8b8d1;
  --text-muted: #8888a8;
  --text-accent: #FDCD18;
  --accent-primary: #FDCD18;
  --accent-gradient: linear-gradient(135deg, #FDCD18 0%, #FFA500 100%);
  --success: #00e676;
  --error: #ff5252;
  --warning: #ff9800;
  --info: #00bcd4;
  --border-primary: rgba(253, 205, 24, 0.25);
  --border-secondary: rgba(253, 205, 24, 0.15);
  --border-glass: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 16px rgba(253, 205, 24, 0.15);
  --shadow-md: 0 8px 32px rgba(253, 205, 24, 0.2);
  --shadow-glow: 0 0 40px rgba(253, 205, 24, 0.3);
  --gradient-primary: linear-gradient(135deg, #FDCD18 0%, #FFA500 100%);
}

.dark-theme {
  background: var(--bg-primary);
}

/* Enhanced Background Elements */
.bg_elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg_circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 40%, transparent 70%);
  animation: float 12s ease-in-out infinite;
  filter: blur(1px);
}

.bg_circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-duration: 15s;
}

.bg_circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
  animation-duration: 18s;
}

.bg_circle:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 6s;
  animation-duration: 20s;
}

.bg_circle:nth-child(4) {
  width: 400px;
  height: 400px;
  top: 30%;
  right: 5%;
  animation-delay: 9s;
  animation-duration: 25s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* ---------------------------- Hero Section ---------------------------- */
#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 70px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 50px 0px;
}

.hero_bg_elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating_orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 205, 24, 0.15) 0%, rgba(253, 205, 24, 0.05) 40%, transparent 70%);
  filter: blur(2px);
  animation: float 15s ease-in-out infinite;
}

.orb_1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.orb_2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: -5%;
  animation-delay: 5s;
}

.orb_3 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

.grid_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(253, 205, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253, 205, 24, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero_container {
  display: flex;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero_content {
  width: 60%;
  animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: 50px;
  padding: 14px 28px;
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  width: fit-content;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.badge_shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.badge_icon {
  animation: pulse 2s infinite;
}

.badge_text {
  font-weight: 800;
}

.hero_title {
  font-size: 4.8rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text-primary);
  letter-spacing: -3px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.title_line {
  line-height: 1;
  display: block;
  animation: fadeInUp 0.8s ease-out;
}

.title_line:nth-child(2) {
  animation-delay: 0.2s;
}

.title_line:nth-child(3) {
  animation-delay: 0.4s;
}

.title_highlight {
  background: var(--gradient-primary);
  background-size: 200%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-flex;
  padding-bottom: 0.1em;
}

.hero_subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 500;
  text-align: left;
  max-width: 95%;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero_buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.3px;
  min-width: 200px;
}

.btn_content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.btn_glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  filter: blur(20px);
  z-index: 1;
}

.btn_primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
}

.btn_primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn_primary:hover .btn_glow {
  opacity: 0.3;
}

.btn_secondary {
  background: var(--bg-glass-strong);
  color: var(--text-primary);
  border: 2px solid var(--border-primary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn_secondary:hover {
  background: var(--bg-glass);
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.btn_large {
  padding: 24px 48px;
  font-size: 17px;
  border-radius: 24px;
  font-weight: 800;
}

.btn_icon svg {
  width: 20px;
  height: 20px;
}

.btn_text {
  font-weight: 800;
}

.hero_visual {
  width: 40%;
  animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.visual_container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating_element {
  position: absolute;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  animation: floatElement 6s ease-in-out infinite;
  z-index: 10;
}

.element_1 {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.element_2 {
  top: 20%;
  right: -25%;
  animation-delay: 2s;
}

.element_3 {
  bottom: 15%;
  left: -15%;
  animation-delay: 4s;
}

@keyframes floatElement {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.element_icon {
  font-size: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.element_text {
  font-weight: 600;
}

.phone_mockup {
  width: 360px;
  height: 760px;
  position: relative;
  animation: float 8s ease-in-out infinite;
  z-index: 5;
}

.phone_frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border-radius: 50px;
  padding: 8px;
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.phone_frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: 50px;
  opacity: 0.05;
  z-index: -1;
}

.phone_notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone_screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero_banner_container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px;
}

.hero_banner_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 42px;
}

/* ---------------------------- Live Updates Section ---------------------------- */
#liveUpdates {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

#liveUpdates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(253, 205, 24, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.liveUpdates_container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.liveUpdates_left {
  width: 45%;
  animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.live_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 800;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.live_badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

.liveUpdates_title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -2px;
}

.liveUpdates_title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.liveUpdates_description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 520px;
  font-weight: 500;
}

.liveUpdates_cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.liveUpdates_card {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: calc(50% - 12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.liveUpdates_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.liveUpdates_card:hover::before {
  opacity: 1;
}

.liveUpdates_card:hover {
  transform: translateY(-8px);
  background: var(--bg-glass);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.card_icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.card_icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(253, 205, 24, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.card_icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
  position: relative;
  z-index: 1;
}

.liveUpdates_card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.liveUpdates_card p {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.liveUpdates_right {
  width: 55%;
  animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
}

.activity_panel {
  width: 100%;
  background: rgba(15, 15, 35, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.activity_panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253, 205, 24, 0.3), transparent);
}

.panel_header {
  background: rgba(15, 15, 35, 0.95);
  padding: 26px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel_title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
}

.panel_controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control_dot.red {
  background: #ff5f56;
}

.control_dot.yellow {
  background: #ffbd2e;
}

.control_dot.green {
  background: #27ca3f;
}

.activity_marquee {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.activity_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.activity_item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  transition: all 0.3s ease;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.activity_item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

.activity_icon_container {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.activity_item.success .activity_icon_container {
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.activity_item.danger .activity_icon_container {
  background: rgba(255, 82, 82, 0.15);
  border: 1px solid rgba(255, 82, 82, 0.3);
}

.activity_item.info .activity_icon_container {
  background: rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.activity_item.warning .activity_icon_container {
  background: rgba(255, 152, 0, 0.15);
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.activity_icon_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.activity_icon {
  font-size: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
  position: relative;
  z-index: 1;
}

.activity_details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.activity_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.activity_time {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.activity_item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.activity_item p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.activity_item span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
}

.activity_item.success span {
  background: rgba(0, 230, 118, 0.15);
  color: var(--success);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.activity_item.danger span {
  background: rgba(255, 82, 82, 0.15);
  color: var(--error);
  border: 1px solid rgba(255, 82, 82, 0.3);
}

.activity_item.info span {
  background: rgba(0, 188, 212, 0.15);
  color: var(--info);
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.activity_item.warning span {
  background: rgba(255, 152, 0, 0.15);
  color: var(--warning);
  border: 1px solid rgba(255, 152, 0, 0.3);
}

/* ---------------------------- Features Section ---------------------------- */
#features {
  padding: 80px 0;
  position: relative;
  background: var(--bg-primary);
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.features_container {
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: auto;
  margin-right: auto;
}

.feature_card_top_section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

.feature_card {
  background: rgba(22, 33, 62, 0.8);
  border: 1px solid rgba(253, 205, 24, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.feature_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(253, 205, 24, 0.05) 0%, rgba(253, 205, 24, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature_card:hover::before {
  opacity: 1;
}

.feature_card:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 205, 24, 0.4);
  box-shadow: 0 20px 40px rgba(253, 205, 24, 0.15);
}

.card_1 {
  width: 50%;
  padding: 32px;
}

.card_content {
  z-index: 2;
  position: relative;
}

.feature_title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.feature_description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 500;
}

.read_more_btn {
  background: transparent;
  border: 2px solid rgba(253, 205, 24, 0.6);
  color: var(--accent-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.read_more_btn:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.card_2 {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #252550 100%);
}

.radar_container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 180px;
  height: 180px;
  margin: 20px;
}

.radar_grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(253, 205, 24, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253, 205, 24, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 50%;
  opacity: 0.3;
}

.radar_circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.radar_circle {
  position: absolute;
  border: 1px solid rgba(253, 205, 24, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle_1 {
  width: 40px;
  height: 40px;
  border-color: rgba(253, 205, 24, 0.6);
}

.circle_2 {
  width: 70px;
  height: 70px;
  border-color: rgba(253, 205, 24, 0.4);
}

.circle_3 {
  width: 100px;
  height: 100px;
  border-color: rgba(253, 205, 24, 0.2);
}

.radar_sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      transparent 270deg,
      rgba(255, 82, 82, 0.3) 300deg,
      rgba(255, 82, 82, 0.6) 330deg,
      rgba(255, 82, 82, 0.3) 360deg);
  border-radius: 50%;
  animation: radarSweep 3s linear infinite;
}

@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.radar_center {
  position: relative;
  z-index: 10;
  width: 32px;
  height: 32px;
  background: rgba(253, 205, 24, 0.2);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car_icon {
  font-size: 16px;
  color: var(--text-primary);
  filter: drop-shadow(0 0 8px rgba(253, 205, 24, 0.5));
}

.radar_alerts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.radar_alert {
  position: absolute;
  background: rgba(15, 15, 35, 0.9);
  border: 1px solid rgba(255, 82, 82, 0.5);
  border-radius: 12px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--error);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: alertPulse 2s infinite;
}

.alert_parking {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.alert_no_contact {
  bottom: -10px;
  left: 20%;
  color: var(--warning);
  border-color: rgba(255, 152, 0, 0.5);
}

@keyframes alertPulse {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.05);
  }
}

.alert_icon {
  font-size: 12px;
}

.alert_text {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.radar_content {
  text-align: center;
}

.radar_content .radar_title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 12px 0;
  letter-spacing: -0.5px;
}

.radar_content .radar_subTitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.card_3 {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.tag_features_head {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
  text-align: center;
}

.pill_tags_container {
  position: relative;
  height: 260px;
  width: 100%;
  flex: 1;
}

.pill_tag {
  position: absolute;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--text-primary);
  padding: 10px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pill_tag:hover {
  background: rgba(253, 205, 24, 0.1);
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.tag_1 {
  top: 35px;
  left: 5px;
  rotate: -10deg;
  z-index: 3;
}

.tag_2 {
  top: 85px;
  left: 25px;
  rotate: -10deg;
  z-index: 3;
}

.tag_3 {
  top: 65px;
  right: 5px;
  rotate: -10deg;
  z-index: 3;
}

.tag_4 {
  top: 140px;
  left: 5px;
  rotate: -10deg;
  z-index: 3;
}

.tag_5 {
  top: 130px;
  right: 5px;
  rotate: -10deg;
  z-index: 3;
}

.feature_card_bottom_section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 30px;
}

.card_4 {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.interaction_grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.interaction_column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.interaction_column_left {
  margin-top: 30px;
}

.interaction_item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  height: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.interaction_item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.interaction_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(253, 205, 24, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 20px rgba(253, 205, 24, 0.35);
}

.interaction_title {
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: -0.2px;
}

.action_item {
  background: rgba(253, 205, 24, 0.2);
  border-color: rgba(253, 205, 24, 0.5);
  padding: 20px 0;
  height: 50%;
}

.interaction_arrow {
  width: 44px;
  height: 44px;
  background: #facc15;
  border-radius: 50%;
  color: #000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_5 {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 32px;
  overflow: hidden;
}

.card_time {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.live_video {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.live_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play_button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #b9ff6c;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 50%;
}

.live_card_content {
  flex: 1;
}

.live_card_title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.live_card_subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
  line-height: 1.5;
}

.card_5 .read_more_btn {
  position: absolute;
  right: 28px;
  bottom: 22px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card_5 .read_more_btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.card_6 {
  width: 25%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.skills_content {
  height: 100%;
}

.skills_title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.emergency_features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.emergency_feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(253, 205, 24, 0.05);
  border: 1px solid rgba(253, 205, 24, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.emergency_feature:hover {
  background: rgba(253, 205, 24, 0.1);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.feature_icon_small {
  font-size: 24px;
  width: 40px;
  height: 40px;
  background: rgba(253, 205, 24, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature_text {
  flex: 1;
}

.feature_text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.feature_text p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* ---------------------------- Pin Location Section ---------------------------- */

#pinLocation {
  padding: 80px 0;
}

.pinLocation_container {
  max-width: 1400px;
  margin: 0 auto;
}

.pinLocation_header {
  text-align: center;
  margin-bottom: 80px;
}

.pinLocation_subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #facc15;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.pinLocation_title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.pinLocation_title span {
  color: #facc15;
}

.pinLocation_description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.pinLocation_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.pinLocation_visual {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual_mockup {
  position: relative;
}

.mockup_phone {
  width: 320px;
  height: 640px;
  background: #1e293b;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 8px solid #334155;
}

.pin_location_img {
  width: 100%;
  height: 100%;
}

.pinLocation_features {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.pinLocation_feature_card {
  width: calc(50% - 25px);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.pinLocation_feature_card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pinLocation_feature_icon {
  font-size: 36px;
  margin-bottom: 16px;
  color: white;
}

.pinLocation_feature_card .title {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.pinLocation_feature_card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.pinLocation_cta {
  text-align: center;
}

.pinLocation_cta_box {
  background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
  padding: 50px 40px;
  border-radius: 24px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(250, 204, 21, 0.3);
}

.pinLocation_cta_title {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 12px;
  font-weight: 800;
}

.pinLocation_cta_description {
  font-size: 16px;
  color: #334155;
  margin-bottom: 24px;
}

.pinLocation_cta_button {
  padding: 16px 40px;
  background: #1e293b;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pinLocation_cta_button:hover {
  background: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ---------------------------- Tag Showcase Section  ---------------------------- */
#tagShowcase {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tagShowcase_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 80px;
  align-items: center;
}

.showcase_header {
  text-align: left;
  margin-bottom: 40px;
}

.privacy_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 700;
  color: #FFC107;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge_dot {
  width: 8px;
  height: 8px;
  background: #FFC107;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.showcase_title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.showcase_title .highlight {
  background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase_subtitle {
  font-size: 1.1rem;
  color: #94A3B8;
  line-height: 1.6;
}

.qr_section {
  position: relative;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qr_code_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}

.qr_code {
  width: 320px;
  object-fit: contain;
}

.qr_features {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qr_feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
}

.feature_check {
  width: 20px;
  height: 20px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.features_section {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature_item {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature_item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.feature_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 13px;
}

.feature_icon.anonymous {
  background: rgba(103, 58, 183, 0.2);
  border: 1px solid rgba(103, 58, 183, 0.4);
  color: #7f7ff5;
}

.feature_icon.flexible {
  background: rgba(33, 150, 243, 0.2);
  border: 1px solid rgba(33, 150, 243, 0.4);
  color: #63b3ed;
}

.feature_icon.quick_fix {
  background: rgba(255, 152, 0, 0.2);
  border: 1px solid rgba(255, 152, 0, 0.4);
  color: #FB923C;
}

.feature_icon.ready {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #fc8181;
}

.feature_content {
  flex: 1;
}

.feature_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.feature_header .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.feature_badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature_badge.anonymous {
  background: rgba(103, 58, 183, 0.2);
  color: #673AB7;
  border: 1px solid rgba(103, 58, 183, 0.4);
}

.feature_badge.flexible {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
  border: 1px solid rgba(33, 150, 243, 0.4);
}

.feature_badge.quick_fix {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
  border: 1px solid rgba(255, 152, 0, 0.4);
}

.feature_badge.ready {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 1px solid rgba(244, 67, 54, 0.4);
}

.feature_content p {
  color: #94A3B8;
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
}

.card_cta_container {
  margin-top: 32px;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.card_cta_bg_gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(202, 138, 4, 0.2), rgba(146, 64, 14, 0.2));
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 16px;
}

.card_cta_bg_texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.card_cta_content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}

.card_cta_text {
  flex: 1;
}

.card_cta_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card_cta_subtitle {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.5;
}

.card_cta_button {
  flex-shrink: 0;
  background: #facc15;
  color: #000000;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.card_cta_button:hover {
  background: #fde047;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.6);
}

.card_cta_arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.card_cta_button:hover .card_cta_arrow {
  transform: translateX(3px);
}

/* ---------------------------- Command Center Section ---------------------------- */

#commandCenter {
  padding: 80px 0;
  background: radial-gradient(circle at top, #0b1028 0%, #050716 70%);
  color: #ffffff;
}

.commandCenter_container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.commandCenter_text {
  width: 50%;
}

.section_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 77, 77, 0.15);
  color: #ff4d4d;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.badge_dot.red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 12px rgba(255, 77, 77, 0.8);
}

.section_title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 18px;
}

.section_description {
  font-size: 16px;
  color: #b6bddf;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.command_features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.command_feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #d7dbff;
}

.feature_check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 77, 77, 0.2);
  color: #ff4d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.commandCenter_visual {
  width: 50%;
  display: flex;
  justify-content: center;
}

.command_screen {
  width: 100%;
  height: 420px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  padding: 20px;
  position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.screen_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9aa6ff;
  margin-bottom: 16px;
}

.screen_status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status_dot.active {
  width: 8px;
  height: 8px;
  background: #2ed573;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(46, 213, 115, 0.8);
}

.screen_content {
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
  border-radius: 16px;
  background:
    radial-gradient(circle, rgba(255, 77, 77, 0.25) 1px, transparent 1px),
    rgba(9, 13, 35, 0.9);
  background-size: 24px 24px;
  overflow: hidden;
}

.screen_content::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 77, 77, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.alert_indicator {
  position: absolute;
  top: 40%;
  left: 55%;
}

.alert_pulse {
  width: 12px;
  height: 12px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.9);
  animation: pulse_alert 2s infinite;
}

@keyframes pulse_alert {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 77, 77, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}

.alert_details {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 20, 55, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(255, 77, 77, 0.4);
  padding: 14px 16px;
}

.alert_badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ff4d4d;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.alert_status {
  padding: 4px 10px;
  background: rgba(255, 77, 77, 0.2);
  border-radius: 6px;
  font-size: 12px;
}

.alert_info p {
  font-size: 14px;
  color: #cfd5ff;
  margin: 2px 0;
}

/* ---------------------------- QR Tag Kit Contents Section ---------------------------- */

#kitContents {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#kitContents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.kit_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.kit_header {
  text-align: center;
  margin-bottom: 60px;
}

.kit_badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #FFC107;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.kit_title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.kit_highlight {
  background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kit_subtitle {
  font-size: 1.1rem;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.kit_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.kit_item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.kit_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFC107, #FFD54F);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.kit_item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
}

.kit_item:hover::before {
  transform: scaleX(1);
}

.kit_item_visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.kit_icon_wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.kit_icon_wrapper svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.kit_item:hover .kit_icon_wrapper svg {
  transform: scale(1.1);
}

.kit_icon_wrapper.qr_tag {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #FFC107;
}

.kit_icon_wrapper.guide {
  background: rgba(33, 150, 243, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.3);
  color: #2196F3;
}

.kit_icon_wrapper.cleaning {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4CAF50;
}

.kit_icon_wrapper.welcome {
  background: rgba(156, 39, 176, 0.15);
  border: 1px solid rgba(156, 39, 176, 0.3);
  color: #9C27B0;
}

.kit_item_title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.kit_item_description {
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.kit_item_specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kit_item_specs li {
  color: #64748B;
  font-size: 0.9rem;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
}

.kit_item_specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
}

.kit_cta {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kit_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,193,7,0.1)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.kit_cta_content {
  position: relative;
  z-index: 2;
}

.kit_cta_title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.kit_cta_description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #94A3B8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.kit_cta_button {
  background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
  color: #000000;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.kit_cta_button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.kit_cta_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

.kit_cta_button:hover svg {
  transform: translateX(4px);
}

/* ---------------------------- Why Choose Us Section ---------------------------- */

#whyChooseUs {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3e 50%, #0f1729 100%);
  position: relative;
  overflow: hidden;
}

#whyChooseUs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(253, 205, 24, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.wcu_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wcu_header {
  text-align: center;
  margin-bottom: 80px;
}

.wcu_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(253, 205, 24, 0.1);
  border: 1px solid rgba(253, 205, 24, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: wcu_pulse 2s ease-in-out infinite;
}

@keyframes wcu_pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(253, 205, 24, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(253, 205, 24, 0);
  }
}

.wcu_badge_dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #FDCD18 0%, #FFA500 100%);
  border-radius: 50%;
  animation: wcu_blink 2s ease-in-out infinite;
}

@keyframes wcu_blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.wcu_badge_text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FDCD18;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wcu_title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.wcu_highlight {
  background: linear-gradient(135deg, #FDCD18 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wcu_subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.wcu_bg_blobs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.wcu_blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.wcu_blob_1 {
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: rgba(250, 204, 21, 0.1);
}

.wcu_blob_2 {
  bottom: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: rgba(59, 130, 246, 0.1);
}

.wcu_features_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.wcu_feature_card {
  background: rgba(26, 29, 51, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.wcu_feature_card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.4);
}

.wcu_card_inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.wcu_card_large {
  flex: 1 1 calc(50% - 8px);
  padding: 32px;
}

.wcu_card_small {
  flex: 1 1 calc(33.333% - 11px);
}

.wcu_card_icon {
  width: 56px;
  height: 56px;
  background: #FACC15;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcu_feature_card:hover .wcu_card_icon {
  transform: scale(1.1);
}

.wcu_card_icon svg {
  width: 32px;
  height: 32px;
  color: #000000;
}

.wcu_icon_small {
  width: 48px;
  height: 48px;
}

.wcu_icon_small svg {
  width: 24px;
  height: 24px;
}

.wcu_card_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wcu_card_title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.wcu_card_description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(148, 163, 184, 1);
  margin: 0;
}

.wcu_card_large .wcu_card_description {
  font-size: 0.875rem;
  line-height: 1.6;
}

.wcu_card_badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(250, 204, 21, 0.05);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  color: #FACC15;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  align-self: flex-start;
  margin-top: auto;
}

.wcu_cta {
  background: linear-gradient(to right, #1a1d33, #0f1121);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 32px;
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wcu_cta_glow {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background: radial-gradient(circle at center, #FACC15 0%, transparent 70%);
}

.wcu_cta_content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.wcu_cta_content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.wcu_cta_content p {
  font-size: 1rem;
  color: rgba(148, 163, 184, 1);
  margin: 0;
  max-width: 640px;
}

.wcu_cta_button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #FACC15;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.2);
}

.wcu_cta_button:hover {
  background: #fde047;
  transform: scale(1.05);
}

.wcu_cta_button:active {
  transform: scale(0.95);
}

.wcu_cta_button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.wcu_cta_button:hover svg {
  transform: translateX(4px);
}

/* ----------------------------  Sticker Placement Section ---------------------------- */

#stickerPlacement {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.placement_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.placement_header {
  text-align: center;
  margin-bottom: 80px;
}

.placement_badge_wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.placement_badge {
  position: relative;
  display: inline-block;
  padding: 10px 28px;
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 50px;
  color: #FFC107;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 1;
}

.badge_glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulse 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.placement_title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.placement_highlight {
  background: linear-gradient(135deg, #FFC107 0%, #FFD54F 50%, #FFC107 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.placement_subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.placement_showcase {
  display: flex;
  align-items: center;
  gap: 40px;
}

.placement_featured {
  width: 55%;
  position: relative;
}

.featured_image_wrapper {
  max-height: 650px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured_image_wrapper:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow:
    0 30px 80px rgba(255, 193, 7, 0.3),
    0 0 0 1px rgba(255, 193, 7, 0.2);
}

.featured_glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.featured_image_wrapper:hover .featured_glow {
  opacity: 1;
}

.featured_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured_image_wrapper:hover .featured_image {
  transform: scale(1.05);
}

.featured_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.featured_badge {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.featured_image_wrapper:hover .featured_badge {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.6);
  transform: translateY(-4px);
}

.featured_number {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFC107;
  line-height: 1;
}

.featured_label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured_info {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured_image_wrapper:hover .featured_info {
  transform: translateY(-4px);
}

.featured_title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.featured_description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.placement_card_section {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.placement_card {
  flex: 1 1 calc(50% - 15px);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.placement_card:hover {
  transform: translateY(-6px);
  z-index: 10;
}

.card_inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.placement_card:hover .card_inner {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 193, 7, 0.2);
}

.card_image_wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.placement_card:hover .card_image_wrapper img {
  transform: scale(1.1);
}

.card_gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.placement_card:hover .card_gradient {
  opacity: 0.8;
}

.card_number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #FFC107;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.placement_card:hover .card_number {
  background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
  color: #000000;
  transform: scale(1.1) rotate(5deg);
  border-color: #FFC107;
}

.card_inner .card_content {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.card_inner .card_content p {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  transition: color 0.3s ease;
}

.placement_card:hover .card_content p {
  color: #FFC107;
}

.card_tag {
  padding: 6px 14px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFC107;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.placement_card:hover .card_tag {
  background: rgba(255, 193, 7, 0.2);
  border-color: #FFC107;
  transform: translateX(4px);
}

/* ---------------------------- Download App Section ---------------------------- */

#downloadApp {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.dA_floating_orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  animation: float2 20s ease-in-out infinite;
}

.dA_orb_1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.dA_orb_2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #FDCD18 0%, #F59E0B 100%);
  bottom: -150px;
  right: -100px;
  animation-delay: 7s;
}

.dA_orb_3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  top: 50%;
  right: 10%;
  animation-delay: 14s;
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.dA_container {
  background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3e 50%, #0f1729 100%);
  border-radius: 30px;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.dA_content_wrapper {
  display: flex;
  align-items: center;
}

.dA_left_section {
  width: 60%;
  padding: 50px;
}

.dA_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #f6e25c1a;
  border: 1px solid #f6e25c38;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 #f6e25c1a;
  }

  50% {
    box-shadow: 0 0 0 8px #f6e25c1a;
  }
}

.dA_badge_dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #f6e25c 0%, #f6e25c 100%);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.dA_badge_text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f6e25c;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dA_main_title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.dA_highlight {
  background: linear-gradient(135deg, #FDCD18 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.dA_description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 580px;
}

.dA_social_proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.dA_user_avatars {
  display: flex;
  align-items: center;
}

.dA_user_avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #0a0a1f;
  margin-left: -12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dA_user_avatar:first-child {
  margin-left: 0;
}

.dA_user_avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 10;
}

.dA_avatar_more {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  border: 3px solid #0a0a1f;
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.dA_social_text {
  flex: 1;
}

.dA_social_title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.dA_social_subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.dA_cta_buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dA_btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.dA_btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dA_btn:hover::before {
  opacity: 1;
}

.dA_btn_icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.dA_btn:hover .dA_btn_icon {
  transform: scale(1.1);
}

.dA_btn_primary {
  background: linear-gradient(135deg, #FDCD18 0%, #F59E0B 100%);
  color: #0a0a1f;
  border: none;
  box-shadow: 0 4px 20px rgba(253, 205, 24, 0.3);
}

.dA_btn_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(253, 205, 24, 0.5);
}

.dA_btn_secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.dA_btn_secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.dA_phone_section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dA_phone_screen {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

/* ---------------------------- Customer testimonials Section ---------------------------- */

#cxTestimonials {
  padding: 100px 0px;
  background:
    linear-gradient(to bottom, rgba(19, 20, 22, 0.85), rgba(0, 0, 0, 0.95)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70');
  background-size: cover;
  background-position: center;
}

.cx_container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.cx_header {
  text-align: center;
  margin-bottom: 70px;
}

.cx_subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
  display: block;
  margin-bottom: 12px;
}

.cx_title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

.cx_title span {
  color: #facc15;
}

.cx_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cx_card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cx_card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.cx_text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 26px;
}

.cx_profile {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  gap: 14px;
}

.cx_profile img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.cx_profile h4 {
  font-size: 15px;
  font-weight: 700;
}

.cx_profile span {
  font-size: 13px;
  color: #9ca3af;
}

/* ---------------------------- FAQ Section ---------------------------- */

#faqSection {
  padding: 100px 20px;
}

.faq_container {
  max-width: 1400px;
  margin: auto;
}

.faq_header {
  width: 100%;
  display: flex;
  gap: 80px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.faq_helper_text {
  width: 30%;
  font-size: 16px;
  color: #a1a1aa;
  margin-bottom: 16px;
  text-align: right;
}

.faq_contact_link {
  color: #facc15;
  text-decoration: none;
  font-weight: 600;
}

.faq_title {
  width: 70%;
  text-align: left;
  color: var(--text-primary);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
}

.faq_title span {
  color: #facc15;
}

.faq_content {
  display: flex;
  align-items: center;
  gap: 80px;
  align-items: start;
}

.faq_categories {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq_category {
  background: none;
  border: none;
  text-align: end;
  font-size: 20px;
  color: #d4d4d8;
  font-weight: 700;
  cursor: pointer;
}

.faq_category.active {
  color: #facc15;
}

.faq_questions {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.faq_item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq_question {
  font-size: 20px;
  font-weight: 700;
  color: #e5e7eb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq_question:hover {
  color: #ffffff;
}

.faq_toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq_item.open .faq_toggle {
  transform: rotate(0deg);
}

.faq_item.open .faq_question {
  color: #ffffff;
}

.faq_answer {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #a1a1aa;
  max-width: 760px;
  display: none;
  transition: all 0.3s ease;
}

.faq_item.open .faq_answer {
  display: block;
}

/* -------------------------------------------------------- Responsive Design -------------------------------------------------------- */

@media (min-width: 2000px) {}

@media (max-width: 1440px) {
  .hero_container {
    gap: 20px;
  }

  .hero_title {
    font-size: 3.5rem;
  }

  .hero_subtitle {
    max-width: 100%;
  }

  .phone_mockup {
    width: 230px;
    height: 500px;
  }

  .floating_element {
    padding: 10px;
    font-size: 10px;
  }

  .element_icon {
    font-size: 16px;
  }

  .liveUpdates_title {
    font-size: 2.25rem;
  }

  .cx_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  #downloadApp {
    padding: 50px 20px;
  }

  .hero_container,
  .liveUpdates_container,
  .features_container,
  .pinLocation_container,
  .tagShowcase_container,
  .commandCenter_container,
  .kit_container,
  .wcu_container,
  .placement_container,
  .cx_container,
  .faq_container {
    max-width: 1240px;
    padding: 0 20px;
  }

  .dA_container{
    max-width: 1240px;
  }

  /* --------------- Features Section --------------- */
  .feature_card_top_section,
  .feature_card_bottom_section {
    flex-wrap: wrap;
    gap: 20px;
  }

  .card_1,
  .card_5 {
    width: 100%;
  }

  .card_2,
  .card_3 {
    width: calc(50% - 10px);
  }

  .card_4 {
    order: 1;
    width: calc(50% - 10px);
  }

  .card_6 {
    order: 2;
    width: calc(50% - 10px);
  }

  .card_5 {
    order: 3;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 30px;
    gap: 40px;
  }

  .live_video {
    width: 180px;
    height: 180px;
  }

  .card_1 .read_more_btn {
    margin: 0 auto;
  }

  /* ----------- Why Choose Us Section ------------ */

  .wcu_features_grid {
    display: flex;
    flex-wrap: wrap;
  }

  .wcu_title {
    font-size: 2.5rem;
  }

  /* ---------------  Sticker Placement Section ---------------- */


  /* ------------- Download App Section -------------- */

  .dA_main_title {
    font-size: 2.5rem;
  }

}

@media (max-width: 1024px) {

  /* ---------- Hero Section ------------ */
  .hero_container {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .hero_content,
  .hero_visual {
    width: 100%;
  }

  .hero_title {
    font-size: 2.8rem;
  }

  .phone_mockup {
    width: 230px;
    height: 500px;
  }

  /* ---------- Live Updates Section ---------- */

  .liveUpdates_container {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .liveUpdates_left,
  .liveUpdates_right {
    width: 100%;
  }

  .liveUpdates_description {
    max-width: unset;
  }

  /* --------------- Features Section --------------- */

  .feature_card_top_section,
  .feature_card_bottom_section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature_card {
    width: 100%;
  }

  /* -------------- Pin Location Section -------------- */

  .pinLocation_content {
    flex-direction: column;
    gap: 40px;
  }

  .pinLocation_features {
    width: 100%;
  }

  /* ----------- Why Choose Us Section ------------ */

  .wcu_card_large {
    flex: 1 1 100%;
  }

  .wcu_card_small {
    flex: 1 1 calc(50% - 8px);
  }

  .wcu_title {
    font-size: 2.25rem;
  }

   /* ---------------  Sticker Placement Section ---------------- */

  .placement_showcase {
    flex-direction: column;
    gap: 40px;
  }

  .placement_featured,
  .placement_card_section {
    width: 100%;
  }


  /* ------------- Download App Section -------------- */

  .dA_content_wrapper {
    flex-direction: column;
  }

  .dA_left_section {
    width: 100%;
    text-align: center;
  }

  .dA_description {
    max-width: unset;
  }

  .dA_cta_buttons {
    justify-content: center;
  }

  .dA_main_title {
    font-size: 2.25rem;
  }

  .dA_social_proof {
    justify-content: center;
  }

  .dA_social_text {
    flex: unset;
  }

  /* ------------ Customer testimonials Section -------------- */

  .cx_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ---------------- FAQ Section ---------------- */
  .faq_content {
    flex-direction: column;
    gap: 40px;
  }

  .faq_categories,
  .faq_questions {
    width: 100%;
  }

  .faq_categories {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq_category {
    text-align: center;
    font-size: 16px;
  }

  .faq_header {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .faq_helper_text,
  .faq_title {
    width: 100%;
    text-align: center;
  }

  .faq_title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {

  /* ---------- Hero Section ------------ */
  .hero_title {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  .hero_subtitle {
    font-size: 1.1rem;
  }

  .btn_large {
    padding: 18px 32px;
  }

  /* ---------- Live Updates Section ---------- */

  .liveUpdates_left,
  .liveUpdates_right {
    width: 100%;
  }

  .liveUpdates_title {
    font-size: 2rem;
  }

  .liveUpdates_description {
    font-size: 1rem;
  }

  .activity_marquee {
    height: 350px;
  }

  /* --------------- Features Section --------------- */

  .feature_card_top_section,
  .feature_card_bottom_section {
    flex-direction: column;
    gap: 20px;
  }

  .feature_card {
    width: 100%;
  }

  .pill_tag {
    font-size: 16px;
    padding: 10px;
  }

  /* -------------- Pin Location Section -------------- */

  .pinLocation_title {
    font-size: 1.75rem;
  }

  .pinLocation_description {
    font-size: 16px;
  }

  .mockup_phone {
    width: 280px;
    height: 560px;
  }

  .pinLocation_cta_box {
    padding: 40px 30px;
  }

  .pinLocation_cta_title {
    font-size: 24px;
  }

  .pinLocation_feature_card {
    width: 100%;
  }

  /* ------------- Tag Showcase Section  ----------------- */

  .tagShowcase_container {
    flex-direction: column;
    gap: 40px;
  }

  .qr_section,
  .features_section {
    width: 100%;
  }

  .showcase_header {
    text-align: center;
  }

  .card_cta_content {
    flex-direction: row;
    text-align: left;
  }

  .card_cta_text {
    flex: 1;
  }

  .feature_item {
    padding: 20px;
    gap: 16px;
  }

  .feature_icon {
    width: 40px;
    height: 40px;
  }

  .feature_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .qr_code {
    width: 100%;
    height: 100%;
    max-height: 300px;
  }

  /* ------------- Command Center Section ------------- */

  .commandCenter_container {
    flex-direction: column;
  }

  .commandCenter_text,
  .commandCenter_visual {
    width: 100%;
  }

  /* -------- QR Tag Kit Contents Section --------- */

  .kit_header {
    margin-bottom: 40px;
  }

  .kit_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .kit_item {
    padding: 24px 20px;
  }

  .kit_cta {
    padding: 32px 24px;
  }

  .kit_cta_title {
    font-size: 1.5rem;
  }

  .kit_cta_description {
    font-size: 1rem;
  }

  /* ----------- Why Choose Us Section ------------ */

  .wcu_header {
    margin-bottom: 60px;
  }

  .wcu_title {
    font-size: 1.75rem;
  }

  .wcu_subtitle {
    font-size: 1rem;
  }

  .wcu_features_grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .wcu_card_large,
  .wcu_card_small {
    flex: 1 1 100%;
  }
  .wcu_feature_card {
    padding: 24px;
  }

  .wcu_card_large {
    padding: 24px;
  }

  .wcu_card_icon {
    width: 48px;
    height: 48px;
  }

  .wcu_card_icon svg {
    width: 24px;
    height: 24px;
  }

  .wcu_icon_small {
    width: 48px;
    height: 48px;
  }

  .wcu_icon_small svg {
    width: 24px;
    height: 24px;
  }

  .wcu_card_content_title {
    font-size: 1.25rem;
  }

  .wcu_card_content_description {
    font-size: 1rem;
  }

  .wcu_cta {
    padding: 40px 24px;
  }

  .wcu_cta_content h2 {
    font-size: 1.75rem;
  }

  .wcu_cta_content p {
    font-size: 0.875rem;
  }

  /* ---------------  Sticker Placement Section ---------------- */


  .placement_header {
    margin-bottom: 50px;
  }

  .placement_title {
    font-size: 1.75rem;
  }

  .placement_subtitle {
    font-size: 1rem;
  }

  .placement_showcase {
    gap: 30px;
  }

  .placement_card_section {
    gap: 16px;
  }

  .placement_card {
    flex: 1 1 100%;
  }

  .featured_title {
    font-size: 1.5rem;
  }

  .featured_description {
    font-size: 0.875rem;
  }

  .card_content {
    padding: 16px;
  }

  .card_inner .card_content p {
    font-size: 1rem;
  }

  .card_number {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }

  /* ------------- Download App Section -------------- */

  .dA_main_title {
    font-size: 2.25rem;
  }

  .dA_description {
    font-size: 1rem;
  }

  .dA_social_proof {
    flex-direction: column;
    text-align: center;
  }

  .dA_left_section {
    padding: 50px 20px;
  }


  /* ------------ Customer testimonials Section -------------- */

  .cx_header {
    text-align: center;
    margin-bottom: 40px;
  }

  .cx_title {
    font-size: 2.4rem;
  }

  .cx_card {
    padding: 20px;
  }

  .cx_text {
    font-size: 14px;
  }

  .cx_profile img {
    width: 48px;
    height: 48px;
  }

  /* ---------------- FAQ Section ---------------- */

  .faq_title {
    font-size: 28px;
  }

  .faq_helper_text {
    font-size: 14px;
  }

  .faq_categories {
    gap: 12px;
  }

  .faq_category {
    font-size: 14px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-secondary);
    border-radius: 20px;
  }

  .faq_question {
    font-size: 16px;
  }

  .faq_answer {
    font-size: 14px;
  }


}

@media (max-width: 480px) {

  /* ---------- Hero Section ------------ */

  .phone_notch {
    width: 80px;
    height: 20px;
  }

  .hero_title {
    font-size: 2rem;
  }

  .hero_subtitle {
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 28px;
  }

  .hero_badge {
    padding: 12px 20px;
    margin-bottom: 20px;
    font-size: 10px;
  }

  .btn_large {
    font-size: 15px;
  }

  .phone_mockup {
    width: 200px;
    height: 400px;
  }

  .hero_buttons {
    gap: 10px;
  }

  .btn {
    padding: 16px 20px;
    font-size: 14px;
    min-width: unset;
  }

  /* ---------- Live Updates Section ---------- */

  .live_badge {
    margin-bottom: 15px;
  }

  .liveUpdates_title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .liveUpdates_description {
    font-size: 0.9rem;
  }

  .liveUpdates_card {
    width: 100%;
    padding: 20px;
  }

  .activity_item {
    padding: 12px;
    min-height: 70px;
  }

  .activity_icon_container {
    width: 40px;
    height: 40px;
  }

  .activity_icon {
    font-size: 16px;
  }

  /* --------------- Features Section --------------- */

  .feature_card {
    padding: 16px;
  }

  .feature_title {
    font-size: 1.8rem;
  }

  .feature_description {
    font-size: 0.9rem;
  }

  .radar_container {
    width: 120px;
    height: 120px;
    margin: 16px;
  }

  .tag_features_head {
    font-size: 1rem;
  }

  .interaction_item {
    padding: 16px 8px;
  }

  .interaction_icon {
    width: 48px;
    height: 48px;
  }

  .interaction_title {
    font-size: 11px;
  }

  .live_video {
    width: 160px;
    height: 160px;
  }

  .live_card_title {
    font-size: 18px;
  }

  .live_card_subtitle {
    font-size: 13px;
  }

  .skills_title {
    font-size: 1.1rem;
  }

  .emergency_feature {
    padding: 10px;
    gap: 12px;
  }

  .feature_icon_small {
    font-size: 16px;
  }

  .pill_tag {
    font-size: 12px;
  }

  .card_5 {
    flex-direction: column;
    padding-bottom: 80px;
  }

  /* -------------- Pin Location Section -------------- */

  .pinLocation_features {
    gap: 24px;
  }

  .pinLocation_content {
    margin-bottom: 24px;
  }

  /* ------------- Tag Showcase Section  ----------------- */

  .showcase_header {
    margin-bottom: 40px;
  }

  .feature_item {
    flex-direction: column;
    gap: 16px;
  }

  .feature_badge {
    position: absolute;
    top: 30px;
    right: 16px;
  }

  .card_cta_container {
    padding: 20px 10px;
  }

  .card_cta_content {
    flex-direction: column;
    text-align: center;
  }

  /* ------------- Command Center Section ------------- */

  .section_title {
    font-size: 2rem;
  }

  /* ----------- Why Choose Us Section ------------ */

  .wcu_title {
    font-size: 1.75rem;
  }

  .wcu_cta_button {
    width: 100%;
    justify-content: center;
  }

  .wcu_cta_content h2 {
    font-size: 1.5rem;
  }

  /* ------------- Download App Section -------------- */

  .dA_main_title {
    font-size: 1.875rem;
  }

  .dA_user_avatar,
  .dA_avatar_more {
    width: 40px;
    height: 40px;
  }

  .dA_btn {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

  /* ------------ Customer testimonials Section -------------- */

  .cx_title {
    font-size: 2rem;
  }

  .cx_subtitle {
    font-size: 12px;
  }

  .cx_card {
    padding: 16px;
  }

  .cx_text {
    font-size: 13px;
    line-height: 1.5;
  }

  .cx_profile {
    gap: 12px;
  }

  .cx_profile img {
    width: 40px;
    height: 40px;
  }

  .cx_profile h4 {
    font-size: 14px;
  }

  .cx_profile span {
    font-size: 11px;
  }

  /* ---------------- FAQ Section ---------------- */

  .faq_title {
    font-size: 24px;
  }

  .faq_helper_text {
    font-size: 13px;
  }

  .faq_categories {
    gap: 8px;
  }

  .faq_category {
    font-size: 12px;
    padding: 6px 12px;
  }

  .faq_item {
    padding: 16px 0;
  }

  .faq_question {
    font-size: 14px;
  }

  .faq_toggle {
    font-size: 20px;
  }

  .faq_answer {
    font-size: 13px;
    margin-top: 12px;
  }

}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  /* Optimize images and icons for retina displays */
  .hero_banner_image,
  .cx_profile img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero_title {
    font-size: 2.8rem;
  }

  .phone_mockup {
    width: 200px;
    height: 400px;
  }

  .activity_marquee {
    height: 280px;
  }
}

@media print {

  .hero_bg_elements,
  .bg_elements,
  .floating_orb,
  .grid_overlay,
  .activity_marquee {
    display: none;
  }

  .hero_container,
  .liveUpdates_container,
  .features_container,
  .cx_container,
  .faq_container {
    max-width: 100%;
    padding: 0;
  }

  .feature_card,
  .cx_card,
  .faq_item {
    break-inside: avoid;
  }
}