#page-loader{position:fixed;top:0;left:0;width:100%;height:100%;background:#0b0b11;display:flex;align-items:center;justify-content:center;z-index:9999;transition:opacity .5s ease,visibility .5s ease}.loader{width:60px;height:60px;border:5px solid rgba(124,77,255,.15);border-top:5px solid #7c4dff;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}#page-loader.hidden{opacity:0;visibility:hidden}

/* smooth scroll */

html, body {
  scroll-behavior: smooth;
}


.section-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  padding: 56px 32px;
  max-width: 1440px;
  margin: auto;
  flex-wrap: wrap;
}
.left-panel {
  width: 430px;
  max-width: 100%;
  padding: 28px 26px;
  border-radius: 18px;
  background: rgba(18, 16, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
}
.left-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.left-title span {
  color: #a78bfa;
}
.left-divider {
  width: 76px;
  height: 2px;
  background: rgba(167, 139, 250, 0.9);
  border-radius: 999px;
  margin: 12px 0 16px;
}
.left-text {
  color: rgba(207, 201, 237, 0.92);
  line-height: 1.65;
  margin-bottom: 18px;
  font-size: 14px;
}
.left-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.left-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e7e3ff;
  margin: 8px 0;
  font-size: 14px;
  padding: 4px 0;
}
.left-list li i {
  color: rgba(167, 139, 250, 0.95);
  margin-right: 0;
  font-size: 13px;
  width: 20px;
  text-align: center;
  opacity: 0.95;
}

/* Before/After card styles */
.before-after-card {
  margin-top: 20px;
  padding: 16px 14px 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.ba-caption {
  margin: 0 0 10px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
.ba-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ba-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 96px;
  padding: 10px 10px;
  border-radius: 14px;
}
.ba-panel-before {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ba-panel-after {
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.22);
}
.ba-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid transparent;
}
.ba-label-before {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}
.ba-label-after {
  background: rgba(167, 139, 250, 0.9);
  border-color: rgba(167, 139, 250, 0.9);
  color: #0b0b11;
}
.ba-desc {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.ba-desc-after {
  color: rgba(167, 139, 250, 0.95);
}
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}
.ba-dots-wrap {
  margin-top: 4px;
}
.ba-dots-wrap i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: inherit;
  box-shadow: inherit;
}
/* Before section styles */
.ba-dots-scattered {
  position: relative;
  width: 56px;
  height: 52px;
  margin: 0 auto;
}
.ba-dots-scattered i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
/* Pattern styles */
.ba-dots-scattered i:nth-child(1) { left: 42px; top: 0; }
.ba-dots-scattered i:nth-child(2) { left: 32px; top: 6px; }
.ba-dots-scattered i:nth-child(3) { left: 22px; top: 12px; }
.ba-dots-scattered i:nth-child(4) { left: 10px; top: 18px; }
.ba-dots-scattered i:nth-child(5) { left: 18px; top: 24px; }
.ba-dots-scattered i:nth-child(6) { left: 26px; top: 30px; }
.ba-dots-scattered i:nth-child(7) { left: 34px; top: 36px; }
.ba-dots-scattered i:nth-child(8) { left: 42px; top: 42px; }
.ba-dots-scattered i:nth-child(9) { left: 32px; top: 46px; }
.ba-dots-scattered i:nth-child(10) { left: 22px; top: 46px; }
/* After section styles */
.ba-dots-pyramid {
  position: relative;
  width: 26px;
  height: 26px;
  margin: 0 auto;
}
.ba-dots-pyramid i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.35);
}
/* Tight cluster styles */
.ba-dots-pyramid i:nth-child(1)  { left: 8px; top: 0; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(2)  { left: 4px; top: 4px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(3)  { left: 14px; top: 4px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(4)  { left: 0; top: 8px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(5)  { left: 8px; top: 6px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(6)  { left: 18px; top: 8px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(7)  { left: 2px; top: 12px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(8)  { left: 10px; top: 10px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(9)  { left: 18px; top: 12px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(10) { left: 4px; top: 16px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(11) { left: 12px; top: 14px; transform: translateX(-50%); }
.ba-dots-pyramid i:nth-child(12) { left: 8px; top: 18px; transform: translateX(-50%); }

.right-panel {
  width: 500px;
  max-width: 100%;
  text-align: center;
  padding: 28px 0 0;
}
.killfeed-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.killfeed-divider {
  width: 76px;
  height: 2px;
  background: rgba(167, 139, 250, 0.9);
  margin: 0 auto 22px;
  border-radius: 999px;
}
.killfeed-box {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(18, 16, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  margin: 0 auto 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
  color: #e9e9f5;
  font-family: "Poppins", sans-serif;
}
.killfeed-icon {
  width: 22px;
  height: 22px;
  margin: 0 8px;
  opacity: 0.95;
  vertical-align: middle;
}
.killfeed-name {
  color: #fff;
  font-weight: 600;
}
.killfeed-weapon {
  color: rgba(167, 139, 250, 0.95);
  font-weight: 600;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-box {
  padding: 18px 16px;
  background: rgba(18, 16, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  text-align: center;
}
.stat-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.22);
  color: rgba(167, 139, 250, 0.95);
  font-size: 16px;
}
.stat-box h4 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.stat-box p {
  color: rgba(191, 185, 217, 0.9);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.right-panel-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.right-panel-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(231, 227, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}
.right-panel-trust i {
  color: rgba(167, 139, 250, 0.9);
}
.right-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: #e7e3ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.right-panel-cta:hover {
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.4);
  color: #fff;
}
.right-panel-cta i {
  font-size: 12px;
  opacity: 0.9;
}

@media (max-width: 1100px) {
  .section-wrapper { flex-direction: column; align-items: center; padding: 44px 22px; }
  .left-panel, .right-panel { width: 100%; max-width: 520px; }
  .right-panel { padding: 10px 0 0; }
  .before-after-card { margin-top: 24px; padding: 18px 16px; }
}
@media (max-width: 520px) {
  .section-wrapper { padding: 32px 14px; gap: 28px; }
  .left-panel { padding: 28px 22px; }
  .ba-inner { flex-direction: column; gap: 16px; }
  .ba-arrow { transform: rotate(90deg); }
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* 3D Badge */
/* HOW IT introduction badge */
/* Intro badge */
.how-intro {
  margin: 0 auto 42px auto;
  padding: 14px 28px;

  max-width: 540px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;

  color: #e8e2f8;
  background: rgba(24, 20, 36, 0.55);
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(16px);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;

  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.how-intro i {
  font-size: 17px;
  color: #a78bfa;
  opacity: 0.95;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* HOW IT WORKS section */
.howitworks-section {
  padding: 88px 24px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.how-title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.how-title span {
  background: linear-gradient(135deg, #c4a8ff 0%, #8f54ff 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.35));
}

/* Premium styles */
.how-divider {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, #8f54ff, #b892ff);
  margin: 16px auto 32px auto;
  border-radius: 999px;
  opacity: 0.95;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}


/* Card styles */
.how-steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}

.how-card {
  width: 300px;
  max-width: 100%;
  padding: 32px 24px;

  background: rgba(18, 16, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  backdrop-filter: blur(20px);

  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;

  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.how-card:hover {
  border-color: rgba(167, 139, 250, 0.25);
  background: rgba(30, 26, 44, 0.6);
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(139, 92, 246, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Step number badge */
.how-icon {
  width: 64px;
  height: 64px;

  background:
    linear-gradient(165deg,
      rgba(196, 168, 255, 0.45) 0%,
      rgba(139, 92, 246, 0.7) 40%,
      rgba(109, 40, 217, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 20px auto;

  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 2px 0 rgba(255, 255, 255, 0.15) inset,
    0 6px 24px rgba(139, 92, 246, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.25);
}

.how-card:hover .how-icon {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 2px 0 rgba(255, 255, 255, 0.2) inset,
    0 8px 32px rgba(139, 92, 246, 0.5),
    0 0 24px rgba(139, 92, 246, 0.25),
    0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Card titles */
.how-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Card descriptions */
.how-card p {
  font-size: 14px;
  color: rgba(203, 196, 232, 0.9);
  line-height: 1.6;
  margin: 0;
}


/* SEO SECTION (Minimal Premium Style) */
.seo-section {
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.seo-container {
  max-width: 900px;
  text-align: center;
}

.seo-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.seo-title span {
  background: linear-gradient(90deg, #b892ff, #8f54ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.seo-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #8f54ff, #b892ff);
  border-radius: 5px;
  margin: 10px auto 35px auto;
  opacity: 0.8;
}

.seo-container p {
  font-size: 16px;
  line-height: 1.7;
  color: #dcd4ff;
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Premium styles */
.seo-container strong {
  color: #fff;
  font-weight: 700;
}



#pricing h2 span {
    background: linear-gradient(90deg, #b892ff 0%, #a78bfa 40%, #8f54ff 70%, #7c3aed 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 900 !important;
}


.video-section {
  margin-top: 84px;
  padding: 0 16px;
}

.video-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.video-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.video-head-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 16, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(231, 227, 255, 0.9);
  font-size: 13px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.video-head-hint i {
  color: rgba(167, 139, 250, 0.95);
}

.video-title {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.video-title span {
  color: rgba(167, 139, 250, 0.95);
}

.video-subtitle {
  color: rgba(191, 185, 217, 0.9);
  font-size: 14px;
  margin: 10px 0 0;
}

.video-grid {
  display: grid;
  gap: 16px;
}

.video-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* all tiles equal (no featured span) */
.video-grid--featured .video-tile.is-featured { grid-column: auto; }

.video-tile {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(18, 16, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.video-tile:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.35), 0 14px 44px rgba(0, 0, 0, 0.38);
}

.video-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.video-tile__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-tile__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
  filter: saturate(1.02) contrast(1.03);
}

.video-tile:hover .video-tile__media img {
  transform: scale(1.06);
}

.video-tile__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.62) 72%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.video-tile__play {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.video-tile:hover .video-tile__play {
  transform: scale(1.06);
  border-color: rgba(167, 139, 250, 0.35);
}

.video-tile__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
}

.video-tile__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.18);
  border: 1px solid rgba(167, 139, 250, 0.22);
  color: rgba(231, 227, 255, 0.95);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.video-tile__title {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
  line-height: 1.2;
}

/* keep featured same as others */
.video-tile.is-featured .video-tile__title { font-size: 18px; }

.video-tile__desc {
  color: rgba(231, 227, 255, 0.82);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .video-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .video-grid--featured .video-tile.is-featured { grid-column: auto; }
}

@media (max-width: 720px) {
  .video-section { margin-top: 56px; }
  .video-head { flex-direction: column; align-items: flex-start; }
  .video-title { font-size: 26px; }
  .video-grid--featured {
    grid-template-columns: 1fr;
  }
  .video-grid--featured .video-tile.is-featured { grid-column: auto; }
}

.vertical-ticker {
  width: 90%;
  max-width: 420px;
  margin-top: 15px;
  margin-left: 40px;
  padding: 14px 20px;
  background: linear-gradient(135deg, 
    rgba(12, 12, 21, 0.7) 0%, 
    rgba(18, 18, 28, 0.6) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  overflow: hidden;
  text-align: center;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.vertical-ticker:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 0 20px rgba(139, 92, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}


.vertical-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

:root{--bg:#080810;--bg-2:#0c0c14;--card:#141426;--muted:#9aa3b2;--txt:#e9ecf2;--accent:#604AC3;--accent-2:#55E65E;--accent-3:#7c4dff;--danger:#ff4757;--shadow:0 10px 40px rgba(0,0,0,.55),inset 0 1px 0 rgba(255,255,255,.02);--radius:18px;--radius-lg:26px;--blur:14px;--maxw:1200px;--ring:0 0 0 2px rgba(96,74,195,.45),0 0 0 6px rgba(96,74,195,.12)}*{box-sizing:border-box}html,body{height:100%}body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,Apple Color Emoji,Segoe UI Emoji;color:var(--txt)}

/* Site genel arka plan — monokrom lavender grid */
body {
  background-color: #070709;
  background-image:
    linear-gradient(rgba(200, 194, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 194, 232, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  background-position: 0 0;
  min-height: 100%;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200, 194, 232, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 40%, rgba(170, 160, 210, 0.035) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 60%, rgba(150, 140, 195, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: -2;
}
/* Tm sayfa arka plan  hareketli yldz noktalar */
#bg-stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

a{color:inherit;text-decoration:none}.container{max-width:var(--maxw);margin-inline:auto;padding:0 20px}.nav{position:sticky;top:0;z-index:50;backdrop-filter:saturate(120%) blur(10px)}.nav__inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}.brand{display:flex;align-items:center;gap:12px}.logo{width:28px;height:28px;border-radius:9px;background:linear-gradient(135deg,var(--accent),#8a7bf4 60%,#b7b0ff);box-shadow:0 6px 20px rgba(96,74,195,.55)}.brand b{font-weight:800;letter-spacing:.2px}.brand-com{color:var(--accent-3)}.nav__links{display:flex;gap:20px;align-items:center}.nav__links a{opacity:.9}.btn{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:999px;background:linear-gradient(180deg,#1b1b2f,#10101b);border:1px solid rgba(255,255,255,.06);box-shadow:var(--shadow);transition:.2s}.btn:hover{transform:translateY(-2px)}.btn--pri{background:linear-gradient(135deg,var(--accent),#7c4dff);box-shadow:0 12px 30px rgba(96,74,195,.4)}.btn--ghost{background:rgba(255,255,255,.04)}.chip{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03);border-radius:999px;font-size:.9rem;color:var(--muted)}.hero{position:relative;padding:96px 0 60px}.grid{display:grid;grid-template-columns:1.35fr 1fr;gap:42px;align-items:center}.headline{font-size:clamp(36px,6vw,64px);line-height:1.05;font-weight:900;letter-spacing:-.02em;margin:16px 0 14px}.headline span{background:linear-gradient(180deg,#fff,#c7cdfa);-webkit-background-clip:text;background-clip:text;color:transparent}.stroke{color:transparent;-webkit-text-stroke:1px rgba(255,255,255,.6)}.badge{font-weight:700;color:var(--accent-2)}.sub{color:var(--muted);font-size:1.06rem;max-width:680px}.cta{display:flex;gap:14px;margin-top:26px;flex-wrap:wrap}.hero-card{position:relative;isolation:isolate;border-radius:var(--radius-lg);padding:24px;background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));border:1px solid rgba(255,255,255,.08);box-shadow:var(--shadow)}.stat{display:flex;align-items:center;gap:12px;padding:12px 14px;border-radius:16px;background:rgba(0,0,0,.35);border:1px solid rgba(255,255,255,.06)}.stat i{color:var(--accent-2)}.stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:16px}canvas#particles{position:absolute;inset:0;z-index:-1}.section{padding:70px 0}.section h2{font-size:clamp(26px,3.5vw,44px);margin:0 0 14px}.muted{color:var(--muted)}.features{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:22px}.card{border-radius:var(--radius);background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));border:1px solid rgba(255,255,255,.06);padding:22px;box-shadow:var(--shadow);transition:transform .2s}.card:hover{transform:translateY(-4px)}.card i{font-size:22px;color:var(--accent-2)}.card h3{margin:10px 0 6px}.pricing{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:26px}.plan{position:relative;overflow:hidden}.plan .ribbon{position:absolute;right:-46px;top:14px;transform:rotate(35deg);background:linear-gradient(135deg,var(--accent-2),#78f589);color:#07140a;font-weight:800;padding:6px 70px;box-shadow:0 8px 20px rgba(85,230,94,.35)}.price{font-size:38px;font-weight:900}.price small{font-size:14px;color:var(--muted)}.bullets{display:grid;gap:10px;margin:10px 0 16px}.bullets i{color:#5ee07a}.reviews{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:22px}.review .stars{color:#ffc400}details{border-radius:16px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);padding:16px}details+details{margin-top:12px}summary{cursor:pointer;font-weight:700}summary::-webkit-details-marker{display:none}footer{padding:40px 0;color:var(--muted)}@media (max-width:1024px){.grid{grid-template-columns:1fr}.features,.pricing,.reviews{grid-template-columns:1fr 1fr}}@media (max-width:640px){.features,.pricing,.reviews{grid-template-columns:1fr}.nav__links{display:none}}.hero-card{position:relative;isolation:isolate;border-radius:var(--radius-lg);padding:24px;background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));border:1px solid rgba(255,255,255,.08);box-shadow:var(--shadow);perspective:1200px}.hero-card img{width:95%;height:auto;display:block;margin:0 auto;border-radius:14px;object-fit:contain;filter:saturate(1.05) contrast(1.05) brightness(.95);transform:rotateY(-12deg) rotateX(2deg);transition:transform .3s ease,filter .3s ease,box-shadow .3s ease;box-shadow:0 12px 40px rgba(0,0,0,.55)}.hero-card img:hover{transform:rotateY(-4deg) rotateX(0deg) scale(1.02);filter:saturate(1.1) brightness(1);box-shadow:0 16px 50px rgba(96,74,195,.5)}#features{margin-top:30px}

/* Ust video resim ksm - Premium 3D Glassmorphism Design */
.showcase {
  display: flex;
  justify-content: center;
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
}

.video-with-ticker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.combo-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.combo-card {
  flex: 1 1 45%;
  max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, 
    rgba(12, 12, 21, 0.85) 0%, 
    rgba(18, 18, 28, 0.75) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.05),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}

.combo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.15) 0%, 
    rgba(124, 58, 237, 0.1) 50%,
    rgba(139, 92, 246, 0.15) 100%
  );
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
}

.combo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.08), 
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.combo-card:hover::after {
  left: 100%;
}

.combo-card video,
.combo-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
  filter: saturate(1.05) contrast(1.05) brightness(0.98);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.combo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 28px 80px rgba(0, 0, 0, 0.6),
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 0 30px rgba(139, 92, 246, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    inset 0 -1px 1px rgba(0, 0, 0, 0.3);
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, 
    rgba(12, 12, 21, 0.9) 0%, 
    rgba(18, 18, 28, 0.8) 100%
  );
}

.combo-card:hover video {
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.08) brightness(1.02);
}

.combo-card:hover img {
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.06) brightness(1.01);
}

.tilt-left {
  transform: rotateY(-4deg) rotateX(1deg) translateZ(20px);
}

.tilt-right {
  transform: rotateY(4deg) rotateX(-1deg) translateZ(20px);
}

.combo-card:hover.tilt-left {
  transform: rotateY(-2deg) rotateX(0deg) translateZ(30px) translateY(-8px) scale(1.02);
}

.combo-card:hover.tilt-right {
  transform: rotateY(2deg) rotateX(0deg) translateZ(30px) translateY(-8px) scale(1.02);
}

.shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, 
    transparent, 
    rgba(255, 255, 255, 0.12), 
    transparent
  );
  transform: skewX(-25deg);
  animation: shineMove 5s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes shineMove {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .tilt-left,
  .tilt-right {
    transform: none !important;
  }
  .combo-card {
    max-width: 100%;
    transform: none !important;
  }
  .combo-card:hover {
    transform: translateY(-4px) scale(1.01) !important;
  }
}


/* dc ve payment logolari*/
.payment-section{margin-top:60px;margin-bottom:80px;text-align:center}.payment-methods h4{font-size:1.4rem;font-weight:700;margin-bottom:20px;color:#fff}.payment-logos{display:flex;justify-content:center;gap:35px;font-size:3rem;color:#ddd}.payment-logos i{transition:transform .3s ease,color .3s ease}.payment-logos i:hover{transform:scale(1.15);color:#8b5cf6}.payment-divider{height:1px;max-width:800px;margin:40px auto;background:linear-gradient(90deg,transparent,rgba(139,92,246,.4),transparent);box-shadow:0 0 20px rgba(139,92,246,.3);border-radius:20px}.paypal-box{background:linear-gradient(180deg,rgba(18,16,28,0.98),rgba(12,11,20,0.98));border:1px solid rgba(139,92,246,.3);color:#e0e0e0;padding:18px 28px;border-radius:16px;display:flex;justify-content:space-between;align-items:center;max-width:900px;margin:0 auto;box-shadow:0 0 20px rgba(124,77,255,.3);backdrop-filter:blur(8px)}.paypal-left{display:flex;align-items:center;gap:16px;text-align:left}.paypal-left img{width:38px;height:38px}.paypal-title{font-weight:700;font-size:16px;color:#fff}.paypal-sub{font-size:14px;color:#bbb;margin-top:2px}.discord-highlight{color:#8b5cf6;font-weight:600}.discord-btn{display:flex;align-items:center;gap:8px;padding:10px 18px;background:#8b5cf6;color:#fff;font-weight:600;border-radius:10px;text-decoration:none;transition:background .3s ease,transform .3s ease}.discord-btn:hover{background:#7c3aed;transform:translateY(-2px)}.discord-btn i{font-size:1.2rem}

/* Scrollbar - site temasıyla uyumlu koyu */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0b0b11;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(200, 194, 232, 0.22), rgba(200, 194, 232, 0.12));
  border-radius: 10px;
  border: 2px solid #0b0b11;
  box-shadow: none;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(200, 194, 232, 0.35), rgba(200, 194, 232, 0.2));
}

/* Pricing header trusted chip  aadaki blokla uyumlu (yeil-mor kaldrld) */
.trusted-chip-wrapper { display: flex; justify-content: center; margin-bottom: 12px; }

/* Pricing Header  sade ve modern, boluklar daraltld */
.pricing-header-section {
  margin-bottom: 36px;
  padding: 32px 24px 28px;
  position: relative;
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
  text-align: center;
  overflow: hidden;
}

.pricing-header-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.045) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.pricing-header {
  position: relative;
  display: inline-block;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-header::before {
  display: none;
}

.pricing-header-center {
  position: relative;
  z-index: 1;
}

.pricing-header h2 {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.8vw, 64px);
  line-height: 1.2;
  margin: 0;
  color: #fff;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pricing-header h2 .line-one {
  font-size: 0.32em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 6px;
}

.pricing-header h2 .line-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}

.pricing-header h2 .line-two {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2px;
}

.pricing-header h2 .line-two .word {
  position: relative;
  display: inline-block;
  transition: transform 0.25s ease;
}

.pricing-header h2 .line-two .word:first-child {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.pricing-header h2 .line-two .word:first-child::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
}

.pricing-header h2 .line-two .word:last-child {
  background: linear-gradient(135deg, #b8a8f0 0%, #8b5cf6 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  filter: drop-shadow(0 0 24px rgba(139, 92, 246, 0.25));
}

.pricing-header h2 .line-two .word:last-child::before {
  display: none;
}

.pricing-header h2 .line-two .word:last-child::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), transparent);
  border-radius: 2px;
  opacity: 0.85;
}

.pricing-divider {
  width: 48px;
  height: 2px;
  margin: 12px auto 10px;
  background: rgba(139, 92, 246, 0.4);
  border-radius: 2px;
}

.pricing-divider::before {
  display: none;
}

.subtitle-elegant {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 0;
  padding: 8px 16px;
  position: relative;
}

.subtitle-part {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 14px);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.subtitle-part::after {
  display: none;
}

.subtitle-part:hover {
  color: rgba(255, 255, 255, 0.65);
}

.subtitle-highlight {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1.4vw, 14px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: rgba(18, 16, 28, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
}

.subtitle-highlight::before {
  display: none;
}

.subtitle-highlight:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.12);
}

.subtitle-sep {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(139, 92, 246, 0.5);
  margin: 0 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: none;
  transition: color 0.3s ease;
}

.subtitle-sep::before {
  display: none;
}

.subtitle-sep:hover {
  color: rgba(167, 139, 250, 0.9);
}

@keyframes gradientShift {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
}

@keyframes fadeUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.trusted-chip-wrapper {
  display: flex;
  justify-content: center;
  margin: 14px 0 0 0;
  position: relative;
  z-index: 1;
  padding: 0;
}

.trusted-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  background: rgba(14, 12, 22, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.25s ease;
  box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
}

.trusted-chip:hover {
  border-color: rgba(139, 92, 246, 0.4);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.1);
}

.trusted-chip .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.trusted-chip:hover .icon-wrapper {
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(139, 92, 246, 0.35);
}

.trusted-chip i {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.trusted-chip span strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .trusted-chip {
    padding: 10px 20px;
    font-size: 0.8rem;
    gap: 10px;
  }
  .trusted-chip .icon-wrapper {
    width: 28px;
    height: 28px;
  }
  .trusted-chip i {
    font-size: 0.85rem;
  }
}

/* ============================================
   PREMIUM PRICING TABLES - MODERN DESIGN
   ============================================ */

/* Section background glow */
.pricing-section {
  padding: 70px 20px 70px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.pricing-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 60%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.pricing-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  max-width: 760px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.pricing-wrapper.container { padding: 0 20px; }

/* Premium Pricing Card - Kompakt */
.pricing-card {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  background: linear-gradient(165deg, 
    rgba(12, 11, 20, 0.95) 0%,
    rgba(16, 14, 28, 0.92) 50%,
    rgba(12, 11, 20, 0.95) 100%
  );
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.18);
  backdrop-filter: blur(24px) saturate(160%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  overflow: visible;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.25), transparent 40%, transparent 60%, rgba(168, 85, 247, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(139, 92, 246, 0.22),
    0 0 40px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.28);
}

.pricing-card:hover::before {
  opacity: 1;
}

/* Highlight Card (Best Value) — translateY kaldırıldı (iki kart aynı hizada) */
.pricing-card.highlight {
  z-index: 5;
  transform: scale(1.02);
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(165deg, 
    rgba(14, 12, 24, 0.96) 0%,
    rgba(18, 14, 32, 0.94) 50%,
    rgba(14, 12, 24, 0.96) 100%
  );
  box-shadow: 
    0 8px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 0 36px rgba(139, 92, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card.highlight::before {
  opacity: 0.6;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.4), transparent 35%, transparent 65%, rgba(168, 85, 247, 0.25));
}

.pricing-card.highlight:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 24px 56px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.35),
    0 0 50px rgba(139, 92, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.4);
}

.pricing-card.highlight:hover::before {
  opacity: 1;
}

/* Card header with plan label */
.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pricing-card .plan-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(139, 92, 246, 0.9);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.pricing-card.highlight .plan-label {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.15));
  border-color: rgba(139, 92, 246, 0.35);
  color: #e9d5ff;
}

/* Best Value Tag */
.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 45%, #a855f7 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 
    0 6px 18px rgba(139, 92, 246, 0.45),
    0 0 14px rgba(124, 58, 237, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  z-index: 100;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(139, 92, 246, 0.45), 0 0 20px rgba(124, 58, 237, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
  50% { box-shadow: 0 8px 28px rgba(139, 92, 246, 0.55), 0 0 28px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
}

/* Aynı üst boşluk: popular-tag ile kart içeriği hizası */
.pricing-card > .status-badge,
.alt-pricing-card > .status-badge {
  margin-top: 28px;
}

/* Status Badge - Premium Glow */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.12) 0%, 
    rgba(22, 163, 74, 0.15) 50%, 
    rgba(34, 197, 94, 0.12) 100%
  );
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  width: fit-content;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(34, 197, 94, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.status-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.4) 0%, 
    rgba(22, 163, 74, 0.3) 50%, 
    rgba(34, 197, 94, 0.4) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  z-index: -1;
}

.status-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.08), 
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.status-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(34, 197, 94, 0.3),
    0 0 20px rgba(34, 197, 94, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25);
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.16) 0%, 
    rgba(22, 163, 74, 0.18) 50%, 
    rgba(34, 197, 94, 0.16) 100%
  );
}

.status-badge:hover::after {
  left: 100%;
}

.status-badge i {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.status-badge:hover i {
  transform: scale(1.1) rotate(5deg);
}

.status-badge span,
.status-badge {
  position: relative;
  z-index: 2;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Title - Premium Text */
.pricing-card .title {
  font-size: 1.38rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  text-shadow: 
    0 0 20px rgba(139, 92, 246, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.4px;
  line-height: 1.25;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.92) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.pricing-card .desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 400;
}

/* Feature List */
.pricing-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  position: relative;
}

.pricing-card .feature-list li {
  color: rgba(255, 255, 255, 0.9);
  margin: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  padding: 4px 0;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

/* Feature icon wrapper */
.pricing-card .feature-list .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.25);
  margin-right: 10px;
  color: #a78bfa;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.pricing-card .feature-list li:hover .feature-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(168, 85, 247, 0.25));
  border-color: rgba(139, 92, 246, 0.45);
  color: #c4b5fd;
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.25);
}

.pricing-card .feature-list li::before {
  display: none;
}

.pricing-card .feature-list li:hover {
  color: #fff;
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.2);
}

/* Price Box - Modern layout */
.price-box {
  margin: 12px 0 10px 0;
  font-weight: 900;
  position: relative;
  padding: 12px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.04) 50%, transparent 100%);
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.pricing-card.highlight .price-box {
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.08) 50%, transparent 100%);
  border-color: rgba(139, 92, 246, 0.15);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  min-height: 36px;
}

.pricing-card .old-price {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-size: 0.9rem;
  font-weight: 600;
}

.save-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.save-badge--hot {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.15));
  color: #fb923c;
  border-color: rgba(249, 115, 22, 0.35);
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.pricing-card .price {
  font-size: 2.5rem;
  background: linear-gradient(180deg, #f5f3ff 0%, #e9e5ff 30%, #c4b5fd 70%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  line-height: 1;
  display: inline-block;
  font-weight: 900;
  letter-spacing: -2px;
  position: relative;
}

.pricing-card.highlight .price {
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 25%, #e9d5ff 60%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(139, 92, 246, 0.2));
}

.pricing-card .currency {
  font-size: 1.4rem;
  vertical-align: top;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card .term {
  display: inline;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  -webkit-text-fill-color: initial;
}

.pricing-card .price-box .price-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 2.6em;
  line-height: 1.35;
}

.pricing-card.highlight .price-box .price-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Payment methods inline */
.payment-methods-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.payment-methods-inline i {
  color: rgba(167, 139, 250, 0.65);
  font-size: 0.75rem;
}

/* Buttons */
.btn-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.btn-primary {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #8b5cf6 100%);
  background-size: 200% 200%;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 
    0 6px 20px rgba(139, 92, 246, 0.3),
    0 0 15px rgba(124, 58, 237, 0.25),
    0 3px 10px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(139, 92, 246, 0.35),
    0 0 20px rgba(124, 58, 237, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary.highlight-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 30%, #a855f7 60%, #8b5cf6 100%);
  background-size: 300% 300%;
  animation: gradientMove 3s ease infinite;
  box-shadow: 
    0 12px 40px rgba(139, 92, 246, 0.6),
    0 0 30px rgba(124, 58, 237, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-secondary {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px) saturate(150%);
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(139, 92, 246, 0.5);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 
    0 10px 35px rgba(139, 92, 246, 0.35),
    0 0 25px rgba(124, 58, 237, 0.25),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover::before {
  opacity: 1;
}

.pricing-section {
  margin-bottom: 60px;
}

/* Status Box - Arka plana uyumlu, koyu */
.status-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(165deg, 
    rgba(10, 10, 17, 0.98) 0%,
    rgba(14, 13, 24, 0.97) 50%,
    rgba(10, 10, 17, 0.98) 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 18px;
  padding: 24px 32px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 24px rgba(124, 77, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  overflow: hidden;
}

.status-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.status-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
  padding: 14px;
  border-radius: 14px;
  color: #22c55e;
  font-size: 1.4rem;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 15px rgba(34, 197, 94, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  position: relative;
  z-index: 1;
}

.status-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.status-text h4 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.status-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}

.status-text p b {
  color: #22c55e;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.status-indicator {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #22c55e;
  font-size: 0.9rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 
    0 4px 20px rgba(34, 197, 94, 0.25),
    0 0 15px rgba(22, 163, 74, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-indicator .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 
    0 0 12px rgba(34, 197, 94, 0.8),
    0 0 20px rgba(34, 197, 94, 0.4);
  animation: pulseGreen 2s ease infinite;
  position: relative;
}

.status-indicator .dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.3);
  animation: ripple 2s ease infinite;
}

@keyframes pulseGreen {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.15);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ============================================
   ALT PRICING SECTION (1 Day, Week, Month)
   ============================================ */

.alt-pricing-section {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 20px 48px 20px;
  position: relative;
  width: 100%;
}

/* Toggle Bar Styles */
.pricing-toggle-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 10;
  scroll-margin-top: 100px;
}

.pricing-toggle-bar {
  display: flex;
  background: linear-gradient(165deg, 
    rgba(10, 10, 17, 0.98) 0%,
    rgba(14, 13, 24, 0.97) 50%,
    rgba(10, 10, 17, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  padding: 5px;
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(139, 92, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 20px rgba(124, 77, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.pricing-toggle-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pricing-toggle-bar:hover::before {
  opacity: 1;
}

.toggle-option {
  position: relative;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.toggle-option i {
  font-size: 0.78rem;
  color: rgba(200, 194, 232, 0.75);
  filter: none;
}

.toggle-option:hover {
  color: rgba(255, 255, 255, 0.9);
}

.toggle-option.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(124, 58, 237, 0.9));
  box-shadow: 
    0 4px 20px rgba(139, 92, 246, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 30px rgba(139, 92, 246, 0.2);
  transform: translateY(-1px);
}

.toggle-option.active[data-plan="lifetime"] {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(124, 58, 237, 0.9));
  box-shadow: 
    0 4px 20px rgba(139, 92, 246, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 30px rgba(139, 92, 246, 0.2);
  color: #fff;
}

.toggle-option.active[data-plan="lifetime"] i {
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.alt-pricing-wrapper {
  width: 100%;
  max-width: 1000px;
  position: relative;
  min-height: 300px;
  padding: 0 20px;
}

.pricing-group {
  display: none;
  gap: 16px;
  animation: fadeInUp 0.5s ease-out;
  width: 100%;
  max-width: 1000px;
}

.pricing-group.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-group.lifetime-plan {
  grid-template-columns: 1fr;
  justify-items: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Alt pricing kartlari - 3'lü yan yana */
.alt-pricing-card {
  position: relative;
  background: linear-gradient(165deg, 
    rgba(10, 10, 17, 0.98) 0%,
    rgba(14, 13, 24, 0.97) 50%,
    rgba(10, 10, 17, 0.98) 100%
  );
  border-radius: 18px;
  padding: 22px 18px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 20px rgba(124, 77, 255, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(25px) saturate(180%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  overflow: visible;
  isolation: isolate;
}

/* Butonu kartın en altına it (script pricing ile aynı) */
.alt-pricing-card .alt-btn-primary {
  margin-top: auto;
  padding-top: 16px;
}

.alt-pricing-card:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.22),
    0 0 24px rgba(139, 92, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.28);
}

.alt-pricing-card.highlight {
  z-index: 5;
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding-top: 28px;
  background: linear-gradient(165deg, 
    rgba(10, 10, 17, 0.98) 0%,
    rgba(14, 13, 24, 0.97) 50%,
    rgba(10, 10, 17, 0.98) 100%
  );
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 0 22px rgba(139, 92, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 24px rgba(124, 77, 255, 0.06);
}

.alt-pricing-card.highlight:hover {
  box-shadow: 
    0 14px 44px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(139, 92, 246, 0.35),
    0 0 28px rgba(139, 92, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.4);
}

.alt-pricing-card.highlight .popular-tag {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #a855f7 100%);
  box-shadow: 
    0 6px 20px rgba(139, 92, 246, 0.35),
    0 0 15px rgba(124, 58, 237, 0.25),
    0 3px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 100;
}

/* Lifetime Card - Kompakt */
.alt-pricing-card.lifetime {
  position: relative;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: linear-gradient(165deg, 
    rgba(10, 10, 17, 0.98) 0%,
    rgba(14, 13, 24, 0.97) 50%,
    rgba(10, 10, 17, 0.98) 100%
  );
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 20px rgba(124, 77, 255, 0.06);
  max-width: 340px;
  padding: 20px 18px;
  margin: 0 auto;
  overflow: visible;
  transition: all 0.3s ease;
}

.alt-pricing-card.lifetime .popular-tag {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #a855f7 100%);
  box-shadow: 
    0 6px 20px rgba(139, 92, 246, 0.35),
    0 0 15px rgba(124, 58, 237, 0.25),
    0 3px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 100;
}

.alt-pricing-card.lifetime:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.25),
    0 0 24px rgba(139, 92, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Lifetime Tag - Outside Card */

/* Lifetime Description - Kompakt */
.alt-pricing-card.lifetime .lifetime-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

.alt-pricing-card.lifetime .desc-highlight {
  color: #b892ff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(184, 146, 255, 0.3);
}

.alt-pricing-card.lifetime .desc-emphasis {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
}

/* Lifetime Features - Kompakt */
.alt-pricing-card.lifetime .lifetime-features {
  margin-bottom: 12px;
}

.alt-pricing-card.lifetime .lifetime-features li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  margin: 6px 0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.alt-pricing-card.lifetime .lifetime-features li:hover {
  color: #fff;
  transform: translateX(3px);
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.alt-pricing-card.lifetime .lifetime-features i {
  color: #8b5cf6;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.6));
  margin-right: 8px;
  font-size: 0.88rem;
  width: 18px;
  text-align: center;
}

/* Content z-index for 3D effect */
.alt-pricing-card.lifetime > *:not(::before) {
  position: relative;
  z-index: 5;
}

.alt-title {
  font-size: 1.28rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 0 12px rgba(139, 92, 246, 0.2), 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.alt-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 400;
}

.alt-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.alt-feature-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.alt-feature-list li:hover {
  color: #fff;
  transform: scale(1.02);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.alt-feature-list i {
  color: #8b5cf6;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
  transition: all 0.3s ease;
  font-size: 0.88rem;
}

.alt-feature-list li:hover i {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.7));
  color: #a855f7;
}

.alt-price-box {
  margin: 8px 0;
  font-weight: 900;
  position: relative;
  padding: 6px 0;
}

.alt-price {
  font-size: 2.4rem;
  background: linear-gradient(180deg, #f0eef8 0%, #d8d0e8 35%, #c4b8dc 70%, #b0a4d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  font-weight: 900;
  letter-spacing: -1.5px;
  position: relative;
}

.alt-term {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-left: 4px;
  font-weight: 500;
}

.alt-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  margin-top: 4px;
  font-weight: 400;
}

/* Discount Price Styles - Kompakt */
.price-discount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.old-price {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.discount-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  box-shadow: 
    0 2px 8px rgba(239, 68, 68, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.alt-btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #8b5cf6 100%);
  background-size: 200% 200%;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 
    0 4px 16px rgba(139, 92, 246, 0.3),
    0 0 12px rgba(124, 58, 237, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.alt-btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: buttonShine 4s infinite;
}

.alt-btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(139, 92, 246, 0.35),
    0 0 20px rgba(124, 58, 237, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}

.alt-btn-primary:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-card {
    max-width: 340px;
    min-width: 260px;
  }
  
  .alt-pricing-card {
    max-width: 300px;
    min-width: 240px;
  }
  
  .alt-pricing-card.lifetime {
    max-width: 360px;
  }
}

@media (max-width: 1024px) {
  .pricing-wrapper {
    flex-wrap: wrap;
    max-width: 420px;
    gap: 20px;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 400px;
    min-width: 100%;
  }
  
  .pricing-section {
    padding: 60px 20px 50px 20px;
  }
  
  .pricing-wrapper {
    padding-top: 15px;
  }
  
  .toggle-option {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .pricing-group.active {
    grid-template-columns: 1fr;
  }
  
  .pricing-group.lifetime-plan {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .alt-pricing-card {
    transform: none !important;
    min-height: auto;
    min-width: 100%;
  }

  .pricing-card.highlight,
  .alt-pricing-card.highlight {
    transform: none !important;
  }

  .pricing-card:hover,
  .alt-pricing-card:hover {
    transform: none !important;
  }

  .pricing-card.highlight:hover,
  .alt-pricing-card.highlight:hover {
    transform: none !important;
  }
  
  .pricing-card .title {
    font-size: 1.35rem;
  }
  
  .pricing-card .price {
    font-size: 2.4rem;
  }
  
  .price {
    font-size: 2.2rem;
  }
  
  .alt-price {
    font-size: 1.75rem;
  }
  
  .alt-title {
    font-size: 1.2rem;
  }
  
  .pricing-section {
    padding: 60px 15px 50px 15px;
  }
  
  .pricing-wrapper {
    padding-top: 16px;
    gap: 24px;
  }
  
  .save-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  
  .popular-tag {
    font-size: 0.68rem;
    padding: 7px 16px;
  }
  
  .alt-pricing-section {
    padding: 24px 15px 28px 15px;
  }
  
  .alt-pricing-wrapper {
    padding-top: 8px;
  }
  
  .pricing-toggle-container {
    margin-bottom: 22px;
  }
  
  .status-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
  }
  
  .status-icon {
    align-self: flex-start;
  }
  
  .status-indicator {
    align-self: flex-start;
  }
  
  .pricing-header-section {
    padding: 24px 20px 20px;
    margin-bottom: 28px;
  }
  
  .pricing-header {
    max-width: 100%;
  }
  
  .pricing-header::before {
    width: 300px;
    height: 300px;
  }
  
  .pricing-header h2 {
    font-size: clamp(38px, 8vw, 56px);
    gap: 10px;
    letter-spacing: -1.5px;
  }
  
  .pricing-header h2 .line-one {
    letter-spacing: 3px;
    font-size: 0.42em;
  }
  
  .pricing-header h2 .line-two {
    gap: 12px;
  }
  
  .subtitle-elegant {
    gap: 6px 10px;
    padding: 15px 20px;
  }
  
  .subtitle-part {
    font-size: clamp(13px, 1.6vw, 15px);
    letter-spacing: 1.5px;
  }
  
  .subtitle-highlight {
    font-size: clamp(14px, 1.8vw, 17px);
    padding: 5px 12px;
    letter-spacing: 2px;
  }
  
  .subtitle-sep {
    font-size: clamp(16px, 2vw, 20px);
    width: 28px;
    height: 28px;
  }
  
  .media-gallery {
    grid-template-columns: 1fr;
  }
  
  .media-panel {
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .system-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-header h2 {
    font-size: clamp(36px, 7vw, 52px);
    gap: 6px;
  }
  
  .pricing-header h2 .line-two {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 20px 16px;
  }
  
  .alt-pricing-card {
    padding: 18px 16px;
  }
  
  .btn-row {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary,
  .alt-btn-primary {
    width: 100%;
  }
}

/* Performance Optimizations */
.pricing-card,
.alt-pricing-card {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .alt-pricing-card,
  .popular-tag,
  .status-badge,
  .btn-primary,
  .btn-secondary,
  .alt-btn-primary {
    animation: none !important;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
  }
  
  .pricing-card:hover,
  .alt-pricing-card:hover {
    transform: none !important;
  }
}

html, body {
  overflow-x: hidden;
}

/* Features Tabs */
.features-tabs {
  text-align: center;
  margin: 40px auto 0;
  max-width: 1200px;
  padding: 0 20px;
  overflow: visible;
}

.features-title {
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.tab-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, rgba(18, 18, 28, 0.6) 0%, rgba(12, 12, 20, 0.6) 100%);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tab-btn {
  background: linear-gradient(135deg, rgba(18, 18, 28, 0.9) 0%, rgba(12, 12, 20, 0.9) 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 32px;
  border-radius: 14px;
  border: 2px solid rgba(139, 92, 246, 0.2);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tab-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed, #a855f7, #8b5cf6);
  background-size: 300% 300%;
  border-radius: 14px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  animation: borderGlow 3s ease infinite;
}

.tab-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.tab-btn:hover::after {
  width: 300px;
  height: 300px;
}

.tab-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 
    0 8px 30px rgba(139, 92, 246, 0.3),
    0 0 40px rgba(124, 58, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-btn:hover::before {
  opacity: 0.3;
}

.tab-btn.active {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 40%, #a855f7 70%, #8b5cf6 100%);
  background-size: 300% 300%;
  color: #fff;
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 
    0 10px 40px rgba(139, 92, 246, 0.5),
    0 0 50px rgba(124, 58, 237, 0.4),
    0 0 80px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  animation: gradientShift 4s ease infinite, pulseGlow 2s ease infinite;
  position: relative;
  z-index: 1;
}

.tab-btn.active::before {
  opacity: 1;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed, #a855f7, #8b5cf6);
}

.tab-btn.active::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  animation: ripple 2s ease infinite;
}

.tab-btn span,
.tab-btn i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.tab-btn i {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.tab-btn.active i {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
  transform: scale(1.1);
}

.tab-btn:hover i {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.7));
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 
      0 10px 40px rgba(139, 92, 246, 0.5),
      0 0 50px rgba(124, 58, 237, 0.4),
      0 0 80px rgba(139, 92, 246, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 12px 50px rgba(139, 92, 246, 0.6),
      0 0 60px rgba(124, 58, 237, 0.5),
      0 0 100px rgba(139, 92, 246, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}
.tab-content {
  overflow: visible;
}

.tab-heading {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* MEDIA - Elite interface preview, overlapping panels */
#media {
  padding: 24px 28px 38px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
#media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}
#media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#media .tab-heading {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.media-subtitle {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.media-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #7c5cff, #a78bfa);
  border-radius: 2px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.media-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1050px;
  margin: 0 auto;
  padding: 24px 0 40px;
  min-height: 280px;
  perspective: 1200px;
  position: relative;
  z-index: 1;
}

.media-panel {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: visible;
  background: linear-gradient(165deg, rgba(14, 12, 22, 0.95) 0%, rgba(10, 8, 18, 0.98) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(139, 92, 246, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: -80px;
  z-index: 1;
  backdrop-filter: blur(16px);
  padding: 10px;
}
.media-panel-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(139, 92, 246, 0.9);
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
}
.media-panel:first-child { margin-left: 0; z-index: 3; transform: rotate(-4deg); }
.media-panel:nth-child(2) { z-index: 2; transform: rotate(1.5deg); }
.media-panel:nth-child(3) { z-index: 1; transform: rotate(5deg); }
.media-panel:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  z-index: 20;
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.media-panel-body {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 72%;
  min-height: 220px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(8, 6, 14, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.media-panel-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  border-radius: 12px;
}
.media-panel-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 12px;
}
.media-panel-body:hover::after {
  opacity: 1;
}
.media-panel-body .media-zoom-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.media-panel-body .media-zoom-hint i {
  margin-right: 6px;
  color: #a78bfa;
}
.media-panel-body:hover .media-zoom-hint {
  opacity: 1;
  bottom: 16px;
}

.media-panel-body img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.95) contrast(1.02) brightness(0.98);
}
.media-panel:hover .media-panel-body img {
  transform: translate(-50%, -50%) scale(1.04);
  filter: saturate(1) contrast(1.02) brightness(1);
}

/* Media popup (GUI fullscreen) */
.media-popup {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 6, 14, 0.92);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.media-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.media-popup-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.media-popup-inner {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200, 194, 232, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 30px 90px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(200, 194, 232, 0.08);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.media-popup.is-open .media-popup-inner {
  transform: scale(1);
}
.media-popup-inner img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.media-popup-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: auto;
  min-width: 52px;
  height: 48px;
  padding: 0 16px;
  gap: 8px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  z-index: 200010;
  transition: all 0.25s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}
.media-popup-close:hover {
  background: #f0eef8;
  color: #111111;
  transform: scale(1.05);
}

@media (max-width: 1100px) {
  .media-gallery {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    min-height: auto;
    padding: 20px 16px 36px;
  }
  .media-panel {
    margin-left: 0;
    width: 100%;
    max-width: 360px;
    padding: 10px;
    transform: none !important;
  }
  .media-panel:hover {
    transform: translateY(-8px) scale(1.02) !important;
  }
  .media-panel-body {
    min-height: 240px;
    padding-bottom: 70%;
  }
  #media {
    padding: 32px 20px 40px;
  }
  #media .tab-heading {
    font-size: 1.35rem;
    letter-spacing: 0.12em;
  }
  .media-subtitle {
    font-size: 0.88rem;
  }
}

.feature-category {
  margin-bottom: 20px;
}

.feature-category h4 {
  color: #8b5cf6;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features section  site uyumlu kart tasarm */
#tab-features .tab-heading {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0.02em;
}
#tab-features .features-subtitle {
  font-size: 0.95rem;
  color: #cfc9ed;
  margin-bottom: 12px;
  font-weight: 500;
}
#tab-features .features-divider {
  width: 85px;
  height: 3px;
  background: linear-gradient(90deg, #8f54ff, #b892ff);
  border-radius: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 0;
}

.feature-card {
  background: linear-gradient(135deg, rgba(18, 18, 28, 0.7) 0%, rgba(12, 12, 20, 0.7) 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  padding: 0;
  text-align: left;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 420px;
}

.feature-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #8f54ff, #b892ff);
  border-radius: 14px 14px 0 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 0 40px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card-header {
  padding: 22px 24px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #c99aff;
  flex-shrink: 0;
}

.feature-card h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #b892ff, #8f54ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card .feature-list-wrap {
  padding: 0 24px 24px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.feature-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-card li {
  color: #e7e3ff;
  font-size: 0.9rem;
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.feature-card li:hover {
  color: #fff;
}

.feature-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #8f54ff;
  font-size: 0.8rem;
  top: 2px;
}

.feature-card .feature-list-wrap::-webkit-scrollbar {
  width: 6px;
}
.feature-card .feature-list-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}
.feature-card .feature-list-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.feature-card .feature-list-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.14);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.system-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(18, 18, 28, 0.7) 0%, rgba(12, 12, 20, 0.7) 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
  padding: 20px;
  border-radius: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 0 40px rgba(139, 92, 246, 0.15);
}

.system-card i {
  font-size: 1.6rem;
  color: #8b5cf6;
}

.system-card h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.system-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

.system-note {
  margin-top: 30px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.08) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 
    0 8px 30px rgba(34, 197, 94, 0.2),
    0 0 20px rgba(22, 163, 74, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.system-note i {
  color: #22c55e;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}

.soft-divider {
  height: 1px;
  max-width: 800px; /* genilii buradan ayarlayabilirsin */
  margin: 40px auto; /* st-alt boluk */
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.4), transparent);
  box-shadow: 0 0 20px rgba(139,92,246,.3);
  border-radius: 20px;
}

.reviews-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px 0;
  position: relative;
}

.reviews-title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #b8a8f0 50%, #fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  animation: gradientShift 4s ease infinite;
}

.reviews-sub {
  color: #b8b0d0;
  font-size: 1.05rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.reviews-scroll-wrapper {
  overflow: hidden;
  margin: 20px 0;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.reviews-scroll-row {
  display: flex;
  gap: 18px;
  width: fit-content;
  will-change: transform;
}

.reviews-scroll-right {
  animation: scrollRight 40s linear infinite;
}

.reviews-scroll-left {
  animation: scrollLeft 40s linear infinite;
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.review-card {
  background: rgba(18, 18, 28, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
  transform-style: preserve-3d;
  perspective: 1000px;
  flex: 0 0 260px;
  min-width: 260px;
}


.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.review-card:hover::before {
  left: 100%;
}

.review-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.25);
  background: rgba(20, 20, 32, 0.8);
}

.review-card .stars {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c99aff;
  text-shadow: 0 0 12px rgba(201, 154, 255, 0.4);
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.review-card:hover .stars {
  transform: scale(1.1);
}

.review-card p {
  color: rgba(233, 236, 242, 0.85);
  font-size: 0.9rem;
  margin: 0 0 12px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.review-card .author {
  font-size: 0.85rem;
  color: rgba(233, 236, 242, 0.5);
  font-weight: 500;
  position: relative;
  z-index: 2;
  display: block;
}

/* Animasyon */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    margin-top: 60px;
    padding: 40px 0;
  }
  .review-card {
    flex: 0 0 240px;
    min-width: 240px;
    padding: 18px 16px;
  }
  .review-card p {
    font-size: 0.85rem;
  }
  .review-card .stars {
    font-size: 1rem;
  }
  .reviews-scroll-row {
    gap: 16px;
  }
  .review-card:hover {
    transform: translateY(-4px);
  }
  .reviews-scroll-right {
    animation-duration: 35s;
  }
  .reviews-scroll-left {
    animation-duration: 35s;
  }
}

#faq details {
  border-radius: 16px;
  background: rgba(18, 16, 28, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.15);
  padding: 16px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
#faq details:hover {
  border-color: rgba(139, 92, 246, 0.25);
  background: rgba(22, 20, 35, 0.85);
}
#faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #e9ecf2;
}
#faq summary::-webkit-details-marker {
  color: #b892ff;
}
#faq summary::marker {
  color: #b892ff;
}
#faq .muted {
  color: #b8b0d0;
}
.cta-card .btn--pri i {
  color: rgba(255, 255, 255, 0.95);
}

/* Hero preview: modest size, clip 3D transform so UI stays inside frame */
.hero-card {
  padding: 18px 20px 24px;
}
.hero-card .hero-media {
  overflow: hidden;
  border-radius: 14px;
  line-height: 0;
}
.hero-card img {
  width: 97%;
  transform: rotateY(-9deg) rotateX(1.5deg);
  transform-origin: center center;
}
.hero-card img:hover {
  transform: rotateY(-4deg) rotateX(0deg) scale(1.03);
}

/* Legal pages (Privacy Policy, etc.) */
.legal-page {
  padding: 96px 0 72px;
  min-height: 70vh;
}
.legal-container {
  max-width: 720px;
}
.legal-meta {
  margin: 0 0 20px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(167, 139, 250, 0.95);
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-back:hover {
  color: #c4b5fd;
}
.legal-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}
.legal-updated {
  margin: 0 0 32px;
  font-size: 14px;
  color: rgba(184, 176, 208, 0.85);
}
.legal-prose {
  padding: 28px 30px;
  border-radius: 18px;
  background: rgba(18, 16, 28, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}
.legal-prose h2 {
  margin: 28px 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #e9e6ff;
  letter-spacing: -0.02em;
}
.legal-prose h2:first-of-type {
  margin-top: 0;
}
.legal-prose p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(220, 215, 245, 0.9);
}
.legal-prose ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  color: rgba(220, 215, 245, 0.9);
  font-size: 15px;
  line-height: 1.6;
}
.legal-prose li {
  margin: 8px 0;
}
.legal-prose a {
  color: rgba(167, 139, 250, 0.98);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-prose a:hover {
  color: #c4b5fd;
}
@media (max-width: 640px) {
  .legal-page {
    padding: 80px 0 56px;
  }
  .legal-prose {
    padding: 22px 18px;
  }
}



/* =========================================================
   HAVOLITH — Unified Theme v4 (logo-aligned)
   Deep obsidian + soft platinum-lavender accent.
   Rewrites base palette so entire site re-themes.
   Appended after base rules so these take precedence.
   ========================================================= */

:root {
  color-scheme: dark;
  /* Override original palette (was purple + green) */
  --bg: #070709 !important;
  --bg-2: #0c0c10 !important;
  --card: #111116 !important;
  --muted: #8a8a95 !important;
  --txt: #eef0f4 !important;
  --accent: #c8c2e8 !important;
  --accent-2: #c8c2e8 !important;
  --accent-3: #a29dc4 !important;
  --danger: #c88585 !important;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  --radius: 18px !important;
  --radius-lg: 24px !important;
  --ring: 0 0 0 2px rgba(200, 194, 232, 0.35), 0 0 0 6px rgba(200, 194, 232, 0.08) !important;

  /* Our own layer */
  --hv-bg: #070709;
  --hv-bg-soft: #0c0c10;
  --hv-surface: rgba(20, 20, 26, 0.72);
  --hv-surface-2: rgba(255, 255, 255, 0.03);
  --hv-border: rgba(255, 255, 255, 0.08);
  --hv-border-strong: rgba(255, 255, 255, 0.16);
  --hv-text: #eef0f4;
  --hv-text-2: #a0a0ab;
  --hv-text-muted: #65656e;
  --hv-accent: #c8c2e8;
  --hv-accent-strong: #a29dc4;
  --hv-success: #7ab696;
  --hv-warning: #c9a97a;
  --hv-danger: #c88585;
  --hv-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
  --hv-radius: 16px;
  --hv-radius-lg: 22px;
}

/* Base */
html, body {
  background: var(--hv-bg) !important;
  color: var(--hv-text) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(600px 520px at 85% -15%, rgba(138, 132, 168, 0.08), transparent 60%),
    radial-gradient(700px 500px at -10% 35%, rgba(90, 86, 114, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

#bg-stars { opacity: 0.25 !important; }
#particles { opacity: 0.2 !important; }

::selection { background: rgba(184, 180, 212, 0.3); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--hv-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(184, 180, 212, 0.4), rgba(184, 180, 212, 0.15));
  border-radius: 10px; border: 2px solid var(--hv-bg);
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  letter-spacing: -0.02em !important;
  color: var(--hv-text) !important;
}

#page-loader { background: var(--hv-bg) !important; }
#page-loader .loader {
  width: 54px !important; height: 54px !important;
  border: 3px solid var(--hv-border) !important;
  border-top-color: var(--hv-accent) !important;
  box-shadow: none !important;
}

/* =============== NAVBAR =============== */
.nav {
  background: rgba(8, 8, 12, 0.75) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  border-bottom: 1px solid var(--hv-border) !important;
}
.nav__inner { padding: 16px 0 !important; }
.nav .brand { display: flex; align-items: center; gap: 12px; }
.nav .brand b {
  color: var(--hv-text) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  letter-spacing: -0.01em;
}
.nav .brand .logo {
  width: 32px !important; height: 32px !important;
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 194, 232, 0.25), transparent 60%),
    linear-gradient(135deg, #2a2736 0%, #14141c 100%) !important;
  border: 1px solid rgba(200, 194, 232, 0.3) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(200, 194, 232, 0.12) !important;
  position: relative;
}
.nav .brand .logo::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  background: linear-gradient(135deg, #c8c2e8, #8f8aad);
  opacity: 0.85;
  mask: radial-gradient(circle at center, transparent 30%, #000 32%);
  -webkit-mask: radial-gradient(circle at center, transparent 30%, #000 32%);
}
.nav__links { gap: 22px !important; }
.nav__links a {
  color: var(--hv-text-2) !important;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
  transition: color .2s ease !important;
  position: relative;
}
.nav__links a:not(.btn):hover { color: var(--hv-text) !important; }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--hv-accent);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }

/* =============== BUTTONS =============== */
.btn, .cta .btn,
.btn.btn--pri, .cta-btn, .btn--primary,
.btn.btn--ghost, .btn-primary, .btn-secondary,
.alt-btn-primary, .discord-btn, .right-panel-cta,
.highlight-btn {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  transition: all .25s ease !important;
  position: relative; overflow: hidden;
}

.btn.btn--pri, .cta-btn, .highlight-btn {
  background: linear-gradient(135deg, #c8c2e8 0%, #a29dc4 100%) !important;
  color: #161620 !important;
  border: 1px solid rgba(200, 194, 232, 0.55) !important;
  font-weight: 700 !important;
  padding: 13px 22px !important;
  box-shadow:
    0 12px 28px rgba(200, 194, 232, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  text-shadow: none !important;
}
.btn.btn--pri i, .cta-btn i, .highlight-btn i { color: #161620 !important; }
.btn.btn--pri:hover, .cta-btn:hover, .highlight-btn:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(135deg, #d4cff0 0%, #b5afd1 100%) !important;
  border-color: rgba(200, 194, 232, 0.7) !important;
  box-shadow:
    0 16px 36px rgba(200, 194, 232, 0.28),
    0 4px 10px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}
.btn.btn--pri:hover i, .cta-btn:hover i { color: #161620 !important; }

.btn.btn--ghost, .btn-secondary {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid var(--hv-border) !important;
  color: var(--hv-text-2) !important;
  box-shadow: none !important;
}
.btn.btn--ghost:hover, .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--hv-border-strong) !important;
  color: var(--hv-text) !important;
}
.btn.btn--ghost i { color: var(--hv-accent) !important; }

.btn.btn--hwid {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--hv-border-strong) !important;
  color: var(--hv-text) !important;
  background: linear-gradient(135deg, #1f1f28 0%, #15151c 100%) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  text-shadow: none !important;
  transition: transform 150ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
  white-space: nowrap;
}
.btn.btn--hwid i { margin-right: 8px; color: var(--hv-accent) !important; filter: none !important; }
.btn.btn--hwid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.10) 18%, transparent 36%);
  transform: translateX(-120%);
  animation: hwidSheen 3.6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.btn.btn--hwid::after { display: none; }
.btn.btn--hwid:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: linear-gradient(135deg, #25252e, #1a1a22) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
.btn.btn--hwid:hover i { color: var(--hv-text) !important; }
@keyframes hwidSheen {
  0% { transform: translateX(-140%); opacity: 0; }
  15% { opacity: 0.6; }
  35% { transform: translateX(140%); opacity: 0; }
  100% { transform: translateX(140%); opacity: 0; }
}

.discord-btn {
  background: linear-gradient(135deg, #1f1f28 0%, #15151c 100%) !important;
  border: 1px solid var(--hv-border-strong) !important;
  color: var(--hv-text) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45) !important;
}
.discord-btn i { color: #9aa3ff !important; }
.discord-btn:hover {
  background: linear-gradient(135deg, #25252e, #1a1a22) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  transform: translateY(-2px);
}

/* =============== HERO (premium background v2) =============== */
.hero {
  position: relative;
  padding: 140px 0 120px !important;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(200, 194, 232, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 20% 35%, rgba(180, 170, 220, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 65%, rgba(150, 140, 200, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(14, 14, 22, 0.85) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a12 0%, #070709 100%) !important;
}
/* Fine grid overlay (stronger center, fades to edges) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 194, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 194, 232, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}
/* Ambient aurora glow + subtle vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(200, 194, 232, 0.1) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.6) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 2; }

/* Decorative conic beam behind the hero — very subtle, premium */
.hero .container::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 540px;
  background:
    conic-gradient(
      from 210deg at 50% 50%,
      transparent 0deg,
      rgba(200, 194, 232, 0.08) 60deg,
      rgba(200, 194, 232, 0.15) 90deg,
      rgba(200, 194, 232, 0.08) 120deg,
      transparent 180deg,
      transparent 360deg
    );
  filter: blur(70px);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}
/* Soft floor fade that blends hero into next section */
.hero .container::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(200, 194, 232, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}


.hero .headline {
  font-size: clamp(42px, 6.2vw, 72px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
  font-weight: 800 !important;
  margin: 18px 0 18px !important;
  color: var(--hv-text) !important;
}
.hero .headline .stroke {
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(200, 194, 232, 0.85) !important;
  text-shadow: 0 0 40px rgba(200, 194, 232, 0.15);
}
.hero .headline span:not(.stroke) {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 70%, #8f8aad 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.hero .sub {
  color: var(--hv-text-2) !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  max-width: 560px;
}
.hero .chip, .chip {
  background: rgba(200, 194, 232, 0.04) !important;
  border: 1px solid rgba(200, 194, 232, 0.2) !important;
  color: var(--hv-text-2) !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
  padding: 7px 14px !important;
  backdrop-filter: blur(6px);
  letter-spacing: 0.01em;
}
.hero .chip i, .chip i { color: var(--hv-accent) !important; }

.stat {
  background: rgba(18, 18, 24, 0.6) !important;
  border: 1px solid var(--hv-border) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(8px);
  transition: border-color .3s ease, transform .3s ease;
}
.stat:hover { border-color: rgba(200, 194, 232, 0.25) !important; transform: translateY(-2px); }
.stat b { color: var(--hv-text) !important; font-family: 'Space Grotesk', sans-serif !important; font-size: 1.1rem; }
.stat i { color: var(--hv-accent) !important; font-size: 1.2rem; }

.hero-card {
  background: linear-gradient(180deg, rgba(22, 22, 30, 0.9), rgba(12, 12, 18, 0.95)) !important;
  border: 1px solid var(--hv-border-strong) !important;
  border-radius: var(--hv-radius-lg) !important;
  backdrop-filter: blur(16px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(200, 194, 232, 0.08) !important;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--hv-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(200, 194, 232, 0.25), transparent 40%, transparent 60%, rgba(200, 194, 232, 0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-media img {
  border-radius: 14px !important;
  filter: saturate(0.75) contrast(1.05) brightness(0.95) hue-rotate(-5deg) !important;
  transform: rotateY(-10deg) rotateX(2deg) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
  transition: transform .4s ease, filter .4s ease !important;
}
.hero-media img:hover {
  transform: rotateY(-3deg) rotateX(0deg) scale(1.015) !important;
  filter: saturate(0.85) contrast(1.1) brightness(1) !important;
  box-shadow: 0 24px 70px rgba(200, 194, 232, 0.15), 0 20px 60px rgba(0, 0, 0, 0.6) !important;
}

/* =============== SECTIONS =============== */
.section { padding: 80px 0 !important; position: relative; z-index: 1; }
.section > .container { position: relative; z-index: 2; }

.section h2, .section-wrapper h2, .pricing-header h2,
.video-title, .features-title, .how-title, .reviews-title,
.seo-title, .left-title, .killfeed-title {
  color: var(--hv-text) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}
.section h2:not(.pricing-hero-title) { font-size: clamp(28px, 3.8vw, 44px) !important; margin-bottom: 10px !important; }

.muted, .sub, .video-subtitle, .media-subtitle, .features-subtitle,
.how-intro, .reviews-sub, .left-text, .product-desc,
.subtitle, .metric-label, .metric-title {
  color: var(--hv-text-2) !important;
}

h2 span[style*="accent-2"], h2 span[style*="accent"],
h2 span[style*="color"] {
  color: var(--hv-accent) !important;
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 90%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.left-title span, .how-title span, .seo-title span,
.pricing-header h2 .word, .discord-highlight {
  color: transparent !important;
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 90%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.pricing-header-section { padding: 70px 0 10px !important; margin-bottom: 0 !important; }
.pricing-header { text-align: center; }
.pricing-header h2:not(.pricing-hero-title) {
  font-size: clamp(34px, 5vw, 54px) !important;
  line-height: 1.05 !important;
  margin-bottom: 16px !important;
}
.pricing-header h2 .line-one { color: var(--hv-text) !important; }
.pricing-header h2 .line-two { display: inline; }
.pricing-header h2 .line-two .word {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 90%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.pricing-divider, .media-divider, .features-divider,
.how-divider, .left-divider, .killfeed-divider, .seo-divider, .soft-divider, .payment-divider {
  background: linear-gradient(90deg, transparent, var(--hv-accent), transparent) !important;
  opacity: 0.5 !important;
}

/* =============== CARDS =============== */
.card, .feature-card, .how-card, .system-card, .stat-box,
.media-panel, .review-card, .video-tile,
.left-panel, .right-panel, .before-after-card,
.status-box, .paypal-box, .payment-section, .cta-card,
.killfeed-box, .alt-pricing-card, .pricing-card {
  background: var(--hv-surface) !important;
  border: 1px solid var(--hv-border) !important;
  border-radius: var(--hv-radius-lg) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4) !important;
  transition: border-color .3s ease, transform .3s ease, background .3s ease !important;
}
.card:hover, .feature-card:hover, .how-card:hover, .system-card:hover,
.stat-box:hover, .media-panel:hover, .review-card:hover,
.video-tile:hover, .alt-pricing-card:hover, .pricing-card:hover {
  border-color: var(--hv-border-strong) !important;
  transform: translateY(-3px) !important;
}
.card i, .features .card > i,
.feature-card-icon i, .stat-box-icon i,
.system-card i, .how-icon {
  color: var(--hv-accent) !important;
}
.how-icon {
  background: linear-gradient(135deg, #1c1c24 0%, #121218 100%) !important;
  border: 1px solid var(--hv-border-strong) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  color: var(--hv-text) !important;
}
.card h3, .feature-card h4, .stat-box h4, .system-card h4,
.how-card h3, .alt-title, .pricing-card .title {
  color: var(--hv-text) !important;
  font-family: 'Space Grotesk', sans-serif !important;
}
.card p, .feature-card p, .how-card p, .system-card p,
.stat-box p, .review-card p {
  color: var(--hv-text-2) !important;
}

/* ============================================================
   PRICING — Native Panel Redesign (v6)
   Designed to blend natively with the site's grid+glow background.
   ============================================================ */

.pricing-section,
.alt-pricing-section {
  position: relative !important;
  padding: 20px 0 90px !important;
  overflow: visible !important;
}
.pricing-section-bg { display: none !important; }

/* Soft atmospheric glow behind cards — echoes body::after */
.pricing-section::before,
.alt-pricing-section::before {
  content: '';
  position: absolute;
  inset: -40px 0 0 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 30%, rgba(200, 194, 232, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 15% 80%, rgba(170, 160, 210, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 85% 80%, rgba(170, 160, 210, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Wrapper grids */
.pricing-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  max-width: 780px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 24px 20px 0 !important;
  position: relative;
  z-index: 1;
  align-items: stretch !important;
}
.alt-pricing-wrapper {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  position: relative;
  z-index: 1;
}
/* Only the active group is visible — toggle switches .active class via JS */
.pricing-group { display: none !important; }
.pricing-group.standard-plans.active {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}
.pricing-group.lifetime-plan.active {
  display: flex !important;
  justify-content: center !important;
}
.pricing-group.lifetime-plan .alt-pricing-card {
  max-width: 440px !important;
  width: 100% !important;
}

@media (max-width: 860px) {
  .pricing-wrapper { grid-template-columns: 1fr !important; max-width: 440px !important; }
  .pricing-group.standard-plans.active {
    grid-template-columns: 1fr !important;
    max-width: 440px !important;
    margin: 0 auto !important;
    gap: 16px !important;
  }
  .pricing-group.standard-plans.active .alt-pricing-card {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }
  .alt-pricing-wrapper {
    padding: 0 14px !important;
  }
}

/* ==================== CARD BASE ====================
   Near-black glass surface with inner 48px grid that echoes body::before.
   Blends natively with the site background.
   ================================================== */
.pricing-card,
.alt-pricing-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  background:
    linear-gradient(180deg, rgba(14, 14, 18, 0.88) 0%, rgba(8, 8, 12, 0.94) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  padding: 24px 22px 22px !important;
  backdrop-filter: blur(18px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(130%) !important;
  box-shadow:
    0 24px 50px -24px rgba(0, 0, 0, 0.9),
    0 8px 18px -10px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  overflow: visible !important;
  isolation: isolate;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .5s ease !important;
  min-width: 0 !important;
  max-width: 100% !important;
  flex: 1 1 0 !important;
}

/* Inner grid pattern — clipped to rounded card shape via inherited radius */
.pricing-card::before,
.alt-pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  overflow: hidden;
}

/* Soft signature lavender glow at top — sits INSIDE card so no clipping issues */
.pricing-card::after,
.alt-pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  border-radius: inherit;
  background: radial-gradient(ellipse 90% 100% at 50% 0%, rgba(200, 194, 232, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  transition: opacity .5s ease;
}

.pricing-card > *,
.alt-pricing-card > * { position: relative; z-index: 1; }

.pricing-card:hover,
.alt-pricing-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(200, 194, 232, 0.18) !important;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(200, 194, 232, 0.08),
    0 0 60px -20px rgba(200, 194, 232, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}
.pricing-card:hover::after,
.alt-pricing-card:hover::after { opacity: 0.8; }

/* ==================== HIGHLIGHT / POPULAR CARD ==================== */
.pricing-card.highlight,
.alt-pricing-card.highlight {
  background:
    linear-gradient(180deg, rgba(20, 18, 26, 0.92) 0%, rgba(10, 10, 14, 0.96) 100%) !important;
  border: 1px solid rgba(200, 194, 232, 0.22) !important;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(200, 194, 232, 0.14),
    0 0 50px -15px rgba(200, 194, 232, 0.2),
    inset 0 1px 0 rgba(200, 194, 232, 0.1) !important;
}
@media (min-width: 861px) {
  .pricing-card.highlight,
  .alt-pricing-card.highlight { transform: translateY(-6px) !important; }
  .pricing-card.highlight:hover,
  .alt-pricing-card.highlight:hover { transform: translateY(-10px) !important; }
}

.pricing-card.highlight::after,
.alt-pricing-card.highlight::after {
  background: radial-gradient(ellipse 90% 100% at 50% 0%, rgba(200, 194, 232, 0.16) 0%, transparent 70%);
  opacity: 1;
}

/* Subtle gradient top border bar on highlight */
.pricing-card.highlight > .popular-tag::before,
.alt-pricing-card.highlight > .popular-tag::before { display: none; }

/* Vertical accent ring — signature highlight marker */
.pricing-card.highlight,
.alt-pricing-card.highlight {
  outline: none;
}

/* ==================== TOP BADGES ==================== */
.popular-tag {
  position: absolute !important;
  top: -13px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  color: #0a0a10 !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 7px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 100px !important;
  box-shadow:
    0 10px 28px rgba(200, 194, 232, 0.4),
    0 0 0 1px rgba(200, 194, 232, 0.18),
    0 0 0 6px rgba(200, 194, 232, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  white-space: nowrap;
  z-index: 4 !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.popular-tag i { color: #0a0a10 !important; font-size: 0.72rem; }

/* Status badge: top-right corner, quiet but distinct */
.status-badge {
  background: rgba(122, 182, 150, 0.08) !important;
  border: 1px solid rgba(122, 182, 150, 0.28) !important;
  color: #9fd8b5 !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.16em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  padding: 4px 10px 4px 20px !important;
  border-radius: 100px !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  align-self: flex-start !important;
  margin: 0 0 14px !important;
  position: relative;
}
.status-badge::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ab696;
  box-shadow: 0 0 0 3px rgba(122, 182, 150, 0.15), 0 0 10px rgba(122, 182, 150, 0.55);
  animation: hv-pulse 2s ease-in-out infinite;
}
.status-badge i { display: none !important; }

@keyframes hv-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(122, 182, 150, 0.15), 0 0 10px rgba(122, 182, 150, 0.55); }
  50% { box-shadow: 0 0 0 5px rgba(122, 182, 150, 0.05), 0 0 16px rgba(122, 182, 150, 0.7); }
}

/* ==================== HEADER ==================== */
.pricing-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin: 0 0 6px !important;
}
.pricing-card .title,
.alt-title {
  color: #ffffff !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}
.plan-label {
  background: rgba(200, 194, 232, 0.08) !important;
  border: 1px solid rgba(200, 194, 232, 0.22) !important;
  color: #d4cff0 !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.6rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 4px 9px !important;
  border-radius: 5px !important;
  white-space: nowrap;
}

.desc,
.alt-desc {
  color: rgba(220, 216, 240, 0.55) !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
  margin: 0 0 14px !important;
  min-height: 0 !important;
}

/* Divider before features */
.pricing-card .desc + .feature-list,
.alt-pricing-card .alt-desc + .alt-feature-list {
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* ==================== FEATURE LIST ==================== */
.feature-list,
.alt-feature-list {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  flex: 1 1 auto;
}
.feature-list li,
.alt-feature-list li {
  color: rgba(235, 232, 248, 0.82) !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: color .25s ease, transform .25s ease;
}
.feature-list li:hover,
.alt-feature-list li:hover {
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  transform: translateX(2px);
}
.feature-list li .feature-icon,
.alt-feature-list li > i:first-child {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  border-radius: 50% !important;
  background: rgba(200, 194, 232, 0.1) !important;
  border: 1px solid rgba(200, 194, 232, 0.24) !important;
  color: #c8c2e8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.5rem !important;
  flex-shrink: 0 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Highlight card: filled solid check marks */
.pricing-card.highlight .feature-list li .feature-icon,
.alt-pricing-card.highlight .alt-feature-list li > i:first-child {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #0a0a10 !important;
  box-shadow: 0 3px 10px rgba(200, 194, 232, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ==================== PRICE BLOCK ====================
   Redesigned: left-aligned with a thin accent bar.
   No heavy "box" look — feels native to the card.
   ================================================== */
.price-box,
.alt-price-box {
  position: relative !important;
  background: transparent !important;
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 0 !important;
  padding: 14px 0 12px !important;
  margin: 2px 0 12px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.price-main {
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  flex-wrap: wrap;
}
.price,
.alt-price {
  color: #ffffff !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(2.2rem, 3.4vw, 2.7rem) !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 110%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}
.currency {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  opacity: 0.7;
  vertical-align: top;
  margin-right: 1px;
  -webkit-text-fill-color: inherit !important;
}
.term,
.alt-term {
  color: rgba(200, 194, 232, 0.55) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
}
.price-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 2px !important;
  flex-wrap: wrap;
}
.old-price {
  color: rgba(180, 174, 210, 0.45) !important;
  text-decoration: line-through !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.76rem !important;
  font-weight: 500 !important;
}
.save-badge,
.discount-badge {
  background: rgba(122, 182, 150, 0.1) !important;
  border: 1px solid rgba(122, 182, 150, 0.3) !important;
  color: #9fd8b5 !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  padding: 2px 7px !important;
  border-radius: 4px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}
.price-sub,
.alt-sub {
  color: rgba(180, 174, 210, 0.5) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.66rem !important;
  font-weight: 500 !important;
  margin-top: 4px !important;
  display: block !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-discount {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

/* ==================== PAYMENT METHODS ROW ==================== */
.payment-methods-inline {
  color: rgba(180, 174, 210, 0.5) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.64rem !important;
  font-weight: 500 !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 7px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
}
.payment-methods-inline i {
  color: #c8c2e8 !important;
  font-size: 0.85rem;
}

/* ==================== BUTTONS ==================== */
.btn-row {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-top: auto !important;
}
.pricing-card .btn-primary,
.pricing-card .btn-secondary,
.alt-btn-primary {
  flex: 1 1 auto !important;
  padding: 11px 16px !important;
  font-size: 0.82rem !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease, color .2s ease !important;
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Non-highlight cards: primary = subtle lavender outline */
.pricing-card .btn-primary,
.alt-pricing-card .alt-btn-primary {
  background: rgba(200, 194, 232, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(200, 194, 232, 0.3) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}
.pricing-card .btn-primary i,
.alt-pricing-card .alt-btn-primary i { color: #c8c2e8 !important; }

.pricing-card .btn-primary:hover,
.alt-pricing-card .alt-btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #c8c2e8 100%) !important;
  color: #0a0a10 !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 14px 30px -8px rgba(200, 194, 232, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
.pricing-card .btn-primary:hover i,
.alt-pricing-card .alt-btn-primary:hover i { color: #0a0a10 !important; }

/* Highlight card: solid white→lavender primary (always bold) */
.pricing-card.highlight .btn-primary,
.alt-pricing-card.highlight .alt-btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  color: #0a0a10 !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow:
    0 14px 32px -8px rgba(200, 194, 232, 0.5),
    0 0 0 1px rgba(200, 194, 232, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}
.pricing-card.highlight .btn-primary i,
.alt-pricing-card.highlight .alt-btn-primary i { color: #0a0a10 !important; }
.pricing-card.highlight .btn-primary:hover,
.alt-pricing-card.highlight .alt-btn-primary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #d8d2f0 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 20px 40px -8px rgba(200, 194, 232, 0.6),
    0 0 0 1px rgba(200, 194, 232, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.btn-secondary {
  background: transparent !important;
  color: rgba(235, 232, 248, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(200, 194, 232, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* ==================== TOGGLE BAR ==================== */
.pricing-toggle-container {
  display: flex !important;
  justify-content: center !important;
  margin: 0 auto 48px !important;
  padding: 0 20px !important;
  position: relative;
  z-index: 1;
}
.pricing-toggle-bar {
  background: rgba(16, 14, 22, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 100px !important;
  padding: 5px !important;
  backdrop-filter: blur(16px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
  box-shadow:
    0 16px 36px -12px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  display: inline-flex !important;
  gap: 4px !important;
}
.toggle-option {
  background: transparent !important;
  color: rgba(200, 194, 232, 0.6) !important;
  border: none !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  transition: all .3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.toggle-option:hover { color: #ffffff !important; }
.toggle-option.active {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  color: #0a0a10 !important;
  box-shadow:
    0 10px 22px -6px rgba(200, 194, 232, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
.toggle-option.active i { color: #0a0a10 !important; }

/* ==================== LIFETIME HERO CARD ==================== */
.alt-pricing-card.lifetime {
  padding: 28px 26px 24px !important;
}
.lifetime-desc {
  font-size: 0.85rem !important;
  line-height: 1.55 !important;
}
.desc-highlight {
  color: #ffffff !important;
  font-weight: 600;
}
.desc-emphasis {
  display: block;
  margin-top: 6px;
  color: rgba(200, 194, 232, 0.7) !important;
  font-style: italic;
  font-weight: 500;
}

/* ==================== HEADER OVERRIDES (match lavender theme) ==================== */
.pricing-header-section::before {
  background: radial-gradient(ellipse, rgba(200, 194, 232, 0.06) 0%, transparent 70%) !important;
}
.pricing-header h2 .line-one {
  color: rgba(200, 194, 232, 0.55) !important;
  font-family: 'JetBrains Mono', monospace !important;
  letter-spacing: 0.28em !important;
}
.pricing-header h2 .line-one::after {
  background: rgba(200, 194, 232, 0.3) !important;
}
.pricing-header h2 .line-two .word:first-child {
  color: #ffffff !important;
}
.pricing-header h2 .line-two .word:first-child::after {
  background: rgba(255, 255, 255, 0.2) !important;
}
.pricing-header h2 .line-two .word:last-child {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 28px rgba(200, 194, 232, 0.3)) !important;
}
.pricing-header h2 .line-two .word:last-child::after {
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.7), transparent) !important;
}
.pricing-divider {
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.5), transparent) !important;
  width: 64px !important;
  height: 1px !important;
}
.soft-divider {
  margin: 8px auto 60px !important;
  max-width: 1180px !important;
  padding: 0 20px;
  position: relative;
}
.soft-divider::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.18), transparent);
}

/* ==================== RESPONSIVE POLISH ==================== */
@media (max-width: 860px) {
  .pricing-card, .alt-pricing-card { padding: 22px 20px 20px !important; }
  .pricing-card.highlight, .alt-pricing-card.highlight { transform: none !important; }
  .pricing-card.highlight:hover, .alt-pricing-card.highlight:hover { transform: translateY(-3px) !important; }
  .price, .alt-price { font-size: 2.2rem !important; }
  .popular-tag { font-size: 0.6rem !important; padding: 5px 13px !important; letter-spacing: 0.14em !important; }
}

@media (max-width: 480px) {
  .pricing-card-header { flex-wrap: wrap; }
  .btn-row { flex-direction: column; }
  .btn-row > * { width: 100%; }
}

/* Reduce motion friendliness */
@media (prefers-reduced-motion: reduce) {
  .pricing-card, .alt-pricing-card,
  .pricing-card.highlight, .alt-pricing-card.highlight,
  .btn-primary, .alt-btn-primary, .btn-secondary,
  .status-badge::before { transition: none !important; transform: none !important; animation: none !important; }
}

/* =============== STATUS BOX =============== */
.status-box {
  background: linear-gradient(135deg, rgba(18,18,24,0.9), rgba(10,10,14,0.9)) !important;
  border: 1px solid var(--hv-border-strong) !important;
}
.status-box .status-icon {
  background: rgba(184, 180, 212, 0.08) !important;
  border: 1px solid rgba(184, 180, 212, 0.25) !important;
  color: var(--hv-accent) !important;
}
.status-box .status-icon i { color: var(--hv-accent) !important; }
.status-box h4 { color: var(--hv-text) !important; }
.status-box p { color: var(--hv-text-2) !important; }
.status-indicator {
  background: rgba(110, 165, 138, 0.08) !important;
  border: 1px solid rgba(110, 165, 138, 0.25) !important;
  color: var(--hv-success) !important;
}
.status-indicator .dot {
  background: var(--hv-success) !important;
  box-shadow: 0 0 10px var(--hv-success) !important;
}

/* =============== VIDEO TILES =============== */
.video-tile__tag {
  background: rgba(184, 180, 212, 0.1) !important;
  border: 1px solid rgba(184, 180, 212, 0.25) !important;
  color: var(--hv-accent) !important;
  font-family: 'JetBrains Mono', monospace !important;
}
.video-tile__title { color: var(--hv-text) !important; }
.video-tile__desc { color: var(--hv-text-2) !important; }
.video-tile__play {
  background: linear-gradient(135deg, #1f1f28 0%, #15151c 100%) !important;
  border: 1px solid var(--hv-border-strong) !important;
  color: var(--hv-text) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
}
.video-head-hint {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--hv-border) !important;
  color: var(--hv-text-2) !important;
}
.video-head-hint i { color: var(--hv-accent) !important; }

/* =============== KILLFEED / PANEL =============== */
.left-list li i, .ba-label-after, .ba-arrow i,
.ba-desc-after, .right-panel-cta, .right-panel-trust i {
  color: var(--hv-accent) !important;
}
.ba-panel-after {
  background: rgba(184, 180, 212, 0.06) !important;
  border-color: rgba(184, 180, 212, 0.25) !important;
}
.ba-label-before { color: var(--hv-text-muted) !important; }
.ba-dots-scattered i { background: var(--hv-text-muted) !important; }
.ba-dots-pyramid i { background: var(--hv-accent) !important; }

.killfeed-box {
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid var(--hv-border) !important;
  color: var(--hv-text-2) !important;
  font-family: 'JetBrains Mono', monospace !important;
}
#killfeed-text { color: var(--hv-text-2) !important; }

/* =============== REVIEWS =============== */
.review-card .stars i { color: var(--hv-warning) !important; }
.review-card p { color: var(--hv-text-2) !important; }
.review-card .author { color: var(--hv-text-muted) !important; font-family: 'JetBrains Mono', monospace !important; }

/* =============== PAYMENT =============== */
.payment-methods { text-align: center; }
.payment-methods h4 { color: var(--hv-text) !important; }
.payment-logos i { color: var(--hv-text-2) !important; transition: color .25s ease; }
.payment-logos i:hover { color: var(--hv-accent) !important; }
.paypal-box { background: var(--hv-surface) !important; border: 1px solid var(--hv-border) !important; }
.paypal-title { color: var(--hv-text) !important; }
.paypal-sub { color: var(--hv-text-2) !important; }

/* =============== FAQ =============== */
#faq details {
  background: var(--hv-surface) !important;
  border: 1px solid var(--hv-border) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  transition: border-color .25s ease, background .25s ease;
}
#faq details:hover { border-color: var(--hv-border-strong) !important; }
#faq details[open] { border-color: var(--hv-border-strong) !important; }
#faq summary {
  color: var(--hv-text) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600 !important;
  cursor: pointer;
}
#faq details p, #faq details li { color: var(--hv-text-2) !important; }
#faq details li i[style] { color: var(--hv-success) !important; }

/* =============== CTA CARD =============== */
.cta-card {
  background: linear-gradient(135deg, rgba(22, 22, 30, 0.9), rgba(12, 12, 18, 0.95)) !important;
  border: 1px solid var(--hv-border-strong) !important;
  box-shadow: var(--hv-shadow) !important;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hv-accent), transparent);
  opacity: 0.6;
}
.cta-card h3 { color: var(--hv-text) !important; font-family: 'Space Grotesk', sans-serif !important; }

/* =============== SHOWCASE combo cards =============== */
.combo-card {
  background: linear-gradient(135deg, rgba(18, 18, 26, 0.85) 0%, rgba(12, 12, 18, 0.95) 100%) !important;
  border: 1px solid var(--hv-border-strong) !important;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(200, 194, 232, 0.08) !important;
}
.combo-card::before {
  background: linear-gradient(135deg, rgba(200, 194, 232, 0.18), transparent 50%, rgba(200, 194, 232, 0.1)) !important;
  opacity: 0.5 !important;
}
.vertical-ticker {
  background: rgba(18, 18, 26, 0.6) !important;
  border: 1px solid var(--hv-border) !important;
}
.vertical-text { color: var(--hv-accent) !important; }

.howitworks-section { padding: 60px 20px !important; }
.how-title { font-size: clamp(26px, 3.2vw, 38px) !important; letter-spacing: 0.04em !important; }
.how-intro {
  background: rgba(200, 194, 232, 0.05) !important;
  border: 1px solid rgba(200, 194, 232, 0.18) !important;
  color: var(--hv-text) !important;
  border-radius: 100px !important;
}
.how-intro i { color: var(--hv-accent) !important; }

/* =============== SEO =============== */
.seo-section p { color: var(--hv-text-2) !important; }
.seo-section strong { color: var(--hv-text) !important; }
.seo-section a { color: var(--hv-accent) !important; }
.seo-section a:hover { color: var(--hv-text) !important; }

/* =============== TRUSTED CHIP =============== */
.trusted-chip {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid var(--hv-border-strong) !important;
}
.trusted-chip .icon-wrapper {
  background: linear-gradient(135deg, #1c1c24 0%, #121218 100%) !important;
  border: 1px solid var(--hv-border-strong) !important;
  color: var(--hv-accent) !important;
}
.trusted-chip span strong { color: var(--hv-text) !important; }
.trusted-chip span { color: var(--hv-text-2) !important; }

.subtitle-elegant { color: var(--hv-text-2) !important; }
.subtitle-highlight { color: var(--hv-accent) !important; }

/* =============== FOOTER =============== */
footer {
  background: var(--hv-bg-soft) !important;
  border-top: 1px solid var(--hv-border) !important;
  color: var(--hv-text-muted) !important;
  position: relative;
  z-index: 1;
}
footer a.muted { color: var(--hv-text-muted) !important; transition: color .2s ease; }
footer a.muted:hover { color: var(--hv-accent) !important; }

/* =============== Site footer — refined =============== */
.site-footer {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 194, 232, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 14, 0.92) 0%, rgba(7, 7, 9, 0.98) 100%) !important;
  border-top: 1px solid var(--hv-border) !important;
  padding: 28px 0 26px !important;
}
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: -16px -4px -8px -6px;
  display: block;
  flex-shrink: 0;
}
.site-footer-brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer-name {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--hv-text);
  letter-spacing: -0.01em;
}
.site-footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--hv-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hv-text-2);
  text-decoration: none;
  transition: color .2s ease;
  padding: 4px 0;
  position: relative;
}
.site-footer-link:hover { color: var(--hv-text); }
.site-footer-link i {
  font-size: 0.8rem;
  color: var(--hv-accent);
  opacity: 0.9;
  transition: transform .25s ease;
}
.site-footer-link:hover i { transform: translateY(-1px); }
.site-footer-link[href^="mailto:"] {
  color: var(--hv-text);
  padding: 6px 14px;
  border: 1px solid rgba(200, 194, 232, 0.18);
  border-radius: 999px;
  background: rgba(200, 194, 232, 0.04);
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
}
.site-footer-link[href^="mailto:"]:hover {
  background: rgba(200, 194, 232, 0.08);
  border-color: rgba(200, 194, 232, 0.35);
}
.site-footer-sep {
  width: 1px;
  height: 16px;
  background: var(--hv-border-strong);
  display: inline-block;
}
@media (max-width: 640px) {
  .site-footer-inner { flex-direction: column; text-align: center; gap: 18px; }
  .site-footer-brand { flex-direction: column; gap: 2px; }
  .site-footer-brand-text { justify-content: center; }
  .site-footer-links { justify-content: center; gap: 14px; }
  .site-footer-sep { display: none; }
  .site-footer-logo { margin: 0 0 4px; }
}

:focus-visible { outline: 2px solid rgba(184, 180, 212, 0.5) !important; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .btn.btn--hwid::before { animation: none; }
  .btn.btn--hwid { transition: none; }
}

/* ============================================================
   FINAL MONOCHROME CLEANUP (v7)
   Force every remaining purple/violet element to the unified
   near-black + lavender palette so nothing feels out of place.
   ============================================================ */

/* -------- Left panel (Why Players Choose Havolith) -------- */
.section-wrapper {
  position: relative;
  z-index: 1;
}
.left-panel,
.right-panel {
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.88) 0%, rgba(8, 8, 12, 0.94) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(16px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(130%) !important;
  box-shadow:
    0 24px 50px -24px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  color: var(--hv-text) !important;
}
.left-title,
.right-panel h3,
.killfeed-title {
  color: #ffffff !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  letter-spacing: -0.01em !important;
}
.left-title span,
.killfeed-title span {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.left-divider,
.killfeed-divider {
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.35), transparent) !important;
  height: 1px !important;
  border: none !important;
}
.left-text {
  color: rgba(220, 216, 240, 0.65) !important;
}
.left-list { padding: 0 !important; list-style: none !important; }
.left-list li {
  color: rgba(235, 232, 248, 0.85) !important;
  background: transparent !important;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  padding: 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.left-list li i {
  color: #c8c2e8 !important;
  background: rgba(200, 194, 232, 0.08) !important;
  border: 1px solid rgba(200, 194, 232, 0.22) !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.78rem !important;
  flex-shrink: 0 !important;
}

/* -------- Before / After recoil comparison -------- */
.before-after-card {
  background: rgba(12, 12, 16, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 14px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}
.ba-caption {
  color: rgba(200, 194, 232, 0.65) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}
.ba-panel {
  background: rgba(16, 16, 22, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.ba-panel-before { border-color: rgba(200, 133, 133, 0.18) !important; }
.ba-panel-after { border-color: rgba(200, 194, 232, 0.25) !important; background: rgba(22, 20, 30, 0.75) !important; }
.ba-label {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 4px 9px !important;
  border-radius: 5px !important;
  border: 1px solid transparent !important;
}
.ba-label-before {
  background: rgba(200, 133, 133, 0.1) !important;
  border-color: rgba(200, 133, 133, 0.3) !important;
  color: #d9a5a5 !important;
}
.ba-label-after {
  background: rgba(200, 194, 232, 0.1) !important;
  border-color: rgba(200, 194, 232, 0.3) !important;
  color: #e8e3ff !important;
}
.ba-desc { color: rgba(200, 194, 232, 0.7) !important; font-size: 0.78rem !important; }
.ba-desc-after { color: #ffffff !important; }
.ba-arrow,
.ba-arrow i {
  color: rgba(200, 194, 232, 0.55) !important;
  background: transparent !important;
}
.ba-dots-scattered i {
  background: rgba(200, 133, 133, 0.65) !important;
  box-shadow: 0 0 6px rgba(200, 133, 133, 0.3) !important;
}
.ba-dots-pyramid i {
  background: #c8c2e8 !important;
  box-shadow: 0 0 6px rgba(200, 194, 232, 0.4) !important;
}

/* -------- Right panel: killfeed + stats + CTA -------- */
.killfeed-box {
  background: rgba(10, 10, 14, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}
#killfeed-text,
.killfeed-box * {
  font-family: 'JetBrains Mono', monospace !important;
}
.killfeed-box b,
.killfeed-box strong,
.killfeed-box .killer,
.killfeed-box .weapon,
.killfeed-box span[style*="color"] {
  color: #c8c2e8 !important;
  text-shadow: 0 0 10px rgba(200, 194, 232, 0.25) !important;
}
.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}
.stat-box {
  background: rgba(14, 14, 18, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 18px 14px !important;
  text-align: center !important;
  box-shadow: none !important;
  transition: border-color .3s ease, transform .3s ease, background .3s ease !important;
}
.stat-box:hover {
  border-color: rgba(200, 194, 232, 0.25) !important;
  transform: translateY(-2px) !important;
  background: rgba(18, 16, 24, 0.8) !important;
}
.stat-box-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(200, 194, 232, 0.08) !important;
  border: 1px solid rgba(200, 194, 232, 0.22) !important;
  color: #c8c2e8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  font-size: 0.95rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}
.stat-box h4 {
  color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  margin: 0 0 4px !important;
  letter-spacing: -0.01em !important;
}
.stat-box p {
  color: rgba(200, 194, 232, 0.6) !important;
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
.right-panel-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  flex-wrap: wrap;
}
.right-panel-trust {
  color: rgba(200, 194, 232, 0.7) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.right-panel-trust i { color: #c8c2e8 !important; }
.right-panel-cta {
  background: rgba(200, 194, 232, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(200, 194, 232, 0.28) !important;
  border-radius: 10px !important;
  padding: 10px 18px !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all .25s ease !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}
.right-panel-cta:hover {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  color: #0a0a10 !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px -8px rgba(200, 194, 232, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
.right-panel-cta:hover i { color: #0a0a10 !important; }
.right-panel-cta i { color: #c8c2e8 !important; transition: color .25s ease !important; }

/* -------- Subtitle pills (ADVANTAGE / DOMINATING) -------- */
.subtitle-highlight {
  background: rgba(200, 194, 232, 0.08) !important;
  border: 1px solid rgba(200, 194, 232, 0.25) !important;
  color: #ffffff !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  -webkit-text-fill-color: #ffffff !important;
}
.subtitle-highlight::before { display: none !important; }
.subtitle-part { color: rgba(200, 194, 232, 0.55) !important; font-family: 'Space Grotesk', sans-serif !important; }
.subtitle-sep { color: rgba(200, 194, 232, 0.35) !important; }

/* -------- Responsive pricing panels -------- */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr !important; }
  .right-panel-footer { justify-content: center; text-align: center; }
}

/* ============================================================
   PROOF SECTION — "Why Havolith" redesign (v8)
   Modern, centered layout: header → features grid → live panel
   (killfeed + recoil SVG) → stats strip → CTA
   ============================================================ */
.proof-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 70px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.proof-stats + .proof-cta { margin-top: -32px; }
.proof-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 20%, rgba(200, 194, 232, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 35% 30% at 85% 80%, rgba(170, 160, 210, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.proof-section > * { position: relative; z-index: 1; }

/* -------- Header -------- */
.proof-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: rgba(200, 194, 232, 0.75);
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(200, 194, 232, 0.06);
  border: 1px solid rgba(200, 194, 232, 0.2);
  border-radius: 100px;
  margin-bottom: 22px;
}
.proof-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8c2e8;
  box-shadow: 0 0 8px rgba(200, 194, 232, 0.6);
  animation: hv-pulse-small 2.2s ease-in-out infinite;
}
@keyframes hv-pulse-small {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 194, 232, 0.4), 0 0 8px rgba(200, 194, 232, 0.6); }
  50% { box-shadow: 0 0 0 5px rgba(200, 194, 232, 0), 0 0 14px rgba(200, 194, 232, 0.75); }
}
.proof-title {
  color: #ffffff;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.proof-title span {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(200, 194, 232, 0.25));
}
.proof-sub {
  color: rgba(220, 216, 240, 0.65);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 640px;
}

/* -------- Features grid (4 cards, 2x2 or 4x1) -------- */
.proof-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.proof-feature {
  position: relative;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.88) 0%, rgba(8, 8, 12, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px 20px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.proof-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.4), transparent);
  opacity: 0.6;
}
.proof-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 194, 232, 0.22);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.95), 0 0 50px -18px rgba(200, 194, 232, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.proof-feature-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(200, 194, 232, 0.08);
  border: 1px solid rgba(200, 194, 232, 0.22);
  color: #c8c2e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}
.proof-feature h4 {
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  line-height: 1.3;
}
.proof-feature p {
  color: rgba(200, 194, 232, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* -------- Live panel (killfeed + recoil visual) -------- */
.proof-live {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proof-live-col {
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.88) 0%, rgba(8, 8, 12, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proof-live-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.proof-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ab696;
  box-shadow: 0 0 0 3px rgba(122, 182, 150, 0.15), 0 0 10px rgba(122, 182, 150, 0.6);
  animation: hv-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.proof-live-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(200, 194, 232, 0.8);
  text-transform: uppercase;
  font-weight: 600;
}
.proof-live-label--alt {
  color: rgba(200, 194, 232, 0.7);
}

/* Killfeed box — game HUD style */
.proof-live-feed .killfeed-box {
  background: rgba(6, 6, 10, 0.85) !important;
  border: 1px solid rgba(200, 194, 232, 0.1) !important;
  border-radius: 12px !important;
  padding: 16px 18px !important;
  min-height: 60px;
  display: flex;
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 40px rgba(200, 194, 232, 0.03) !important;
}
.proof-live-feed #killfeed-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: rgba(235, 232, 248, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.proof-live-feed .killfeed-name {
  color: #ffffff;
  font-weight: 700;
}
.proof-live-feed .killfeed-weapon {
  color: #c8c2e8;
  text-shadow: 0 0 10px rgba(200, 194, 232, 0.35);
  font-weight: 700;
}
.proof-live-feed .killfeed-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1) opacity(0.9);
}
.proof-live-caption {
  color: rgba(180, 174, 210, 0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

/* Recoil comparison visual */
.proof-live-demo .recoil-compare { display: flex; align-items: center; justify-content: center; gap: 10px; flex: 1; }
.recoil-target {
  flex: 1 1 0;
  background: rgba(6, 6, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.recoil-target-before { border-color: rgba(200, 133, 133, 0.22); }
.recoil-target-after { border-color: rgba(200, 194, 232, 0.25); background: rgba(18, 16, 26, 0.75); }

.recoil-target-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid transparent;
}
.recoil-target-label--bad {
  background: rgba(200, 133, 133, 0.1);
  border-color: rgba(200, 133, 133, 0.3);
  color: #d9a5a5;
}
.recoil-target-label--good {
  background: rgba(200, 194, 232, 0.12);
  border-color: rgba(200, 194, 232, 0.35);
  color: #ffffff;
}
.recoil-svg {
  width: 110px;
  height: 110px;
  display: block;
}
.recoil-target-sub {
  color: rgba(200, 194, 232, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
}
.recoil-target-after .recoil-target-sub {
  color: rgba(235, 232, 248, 0.8);
}
.recoil-arrow {
  color: rgba(200, 194, 232, 0.45);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* -------- Stats strip -------- */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.9) 0%, rgba(8, 8, 12, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px 14px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.proof-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.4), transparent);
}
.proof-stat {
  text-align: center;
  padding: 6px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.proof-stat:last-child { border-right: none; }
.proof-stat-num {
  display: block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.proof-stat-sym {
  font-size: 0.65em;
  opacity: 0.7;
  margin-left: 2px;
  -webkit-text-fill-color: inherit;
}
.proof-stat-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(200, 194, 232, 0.5);
  text-transform: uppercase;
}

/* -------- CTA footer -------- */
.proof-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(18, 16, 24, 0.82) 0%, rgba(10, 10, 14, 0.92) 100%);
  border: 1px solid rgba(200, 194, 232, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 14px 32px -20px rgba(0, 0, 0, 0.85), 0 0 38px -22px rgba(200, 194, 232, 0.15);
  flex-wrap: wrap;
}
.proof-cta-text {
  color: rgba(220, 216, 240, 0.82);
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.proof-cta-text i { color: #c8c2e8; font-size: 0.82rem; }
.proof-cta-text b { color: #ffffff; font-weight: 700; }
.proof-cta-btn {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%);
  color: #0a0a10;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 9px 18px;
  border-radius: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow:
    0 12px 28px -8px rgba(200, 194, 232, 0.45),
    0 0 0 1px rgba(200, 194, 232, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.proof-cta-btn i { color: #0a0a10; }
.proof-cta-btn:hover {
  background: linear-gradient(180deg, #ffffff 0%, #d8d2f0 100%);
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px -8px rgba(200, 194, 232, 0.55),
    0 0 0 1px rgba(200, 194, 232, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* -------- Responsive -------- */
@media (max-width: 960px) {
  .proof-section { gap: 32px; padding: 50px 18px 40px; }
  .proof-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-live { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; padding: 12px 12px; }
  .proof-stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 10px 8px; }
  .proof-stat:nth-last-child(-n+2) { border-bottom: none; }
  .proof-cta { flex-direction: column; text-align: center; padding: 14px 16px; gap: 12px; }
  .proof-cta-text { text-align: center; justify-content: center; }
}
@media (max-width: 520px) {
  .proof-features { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stat { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .proof-stat:last-child { border-bottom: none; }
  .recoil-svg { width: 90px; height: 90px; }
  .proof-live-col { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .proof-kicker-dot, .proof-live-dot { animation: none !important; }
  .proof-feature, .proof-cta-btn { transition: none !important; }
}

/* ============================================================
   STATUS BOX — Monochrome refinement (v8)
   Pulled into the near-black + subtle lavender palette.
   "Undetected" no longer screams bright green.
   ============================================================ */
.status-box {
  max-width: 1180px !important;
  margin: 8px auto 48px !important;
  padding: 18px 22px !important;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.88) 0%, rgba(8, 8, 12, 0.94) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  position: relative;
  z-index: 1;
  overflow: hidden !important;
}
.status-box::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 10% !important;
  right: 10% !important;
  bottom: auto !important;
  height: 1px !important;
  width: auto !important;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.35), transparent) !important;
  opacity: 0.6 !important;
  border-radius: 0 !important;
  filter: none !important;
  transform: none !important;
}
.status-box .status-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 10px !important;
  background: rgba(200, 194, 232, 0.08) !important;
  border: 1px solid rgba(200, 194, 232, 0.22) !important;
  color: #c8c2e8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  flex-shrink: 0;
}
.status-box .status-icon i { color: #c8c2e8 !important; font-size: 1rem !important; }
.status-text { flex: 1 !important; min-width: 0 !important; }
.status-text h4 {
  color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 4px !important;
}
.status-text p {
  color: rgba(220, 216, 240, 0.6) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.84rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
/* Soft mint for "Undetected" — no longer a neon scream */
.status-text p b {
  color: #9fd8b5 !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.9em !important;
  letter-spacing: 0.02em;
}

.status-indicator {
  background: rgba(122, 182, 150, 0.08) !important;
  border: 1px solid rgba(122, 182, 150, 0.3) !important;
  color: #9fd8b5 !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 6px 12px 6px 10px !important;
  border-radius: 100px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: none !important;
}
.status-indicator .dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #7ab696 !important;
  box-shadow: 0 0 0 3px rgba(122, 182, 150, 0.15), 0 0 10px rgba(122, 182, 150, 0.55) !important;
  animation: hv-pulse 2s ease-in-out infinite;
  position: relative;
}
.status-indicator .dot::after { display: none !important; }

@media (max-width: 640px) {
  .status-box { flex-direction: column; align-items: flex-start !important; gap: 12px !important; }
  .status-indicator { align-self: flex-start; }
}

/* ============================================================
   CHEAT FEATURES — site-harmonized monochrome lavender (v9)
   Layout stays the same (simple title + tabs + tilted media
   panels), but tones are pulled into the near-black + soft
   lavender palette used across the rest of the site.
   ============================================================ */

/* --- Section container + spacing (close to pricing above) --- */
.features-tabs {
  position: relative !important;
  max-width: 1200px !important;
  margin: -40px auto 25px !important;
  padding: 30px 24px 55px !important;
  background: transparent !important;
  overflow: visible !important;
  text-align: center !important;
  z-index: 1;
  display: block !important;
}
.features-tabs::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 50% 18%, rgba(200, 194, 232, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* --- Section title --- */
.features-tabs .features-title {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3.4vw, 40px) !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  text-align: center !important;
  margin: 0 auto 24px !important;
  padding: 0 !important;
  text-shadow: none !important;
  filter: none !important;
}
.features-tabs .features-title::before,
.features-tabs .features-title::after { display: none !important; }

/* --- Tab bar wrapper: force true centering under title --- */
.features-tabs .tab-buttons {
  display: inline-flex !important;
  gap: 4px !important;
  padding: 5px !important;
  background: rgba(14, 14, 20, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 100px !important;
  backdrop-filter: blur(14px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(150%) !important;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  margin: 0 auto 48px !important;
  position: static !important;
  left: auto !important;
  transform: none !important;
  float: none !important;
  flex-wrap: nowrap !important;
  text-align: left;
  vertical-align: top;
}
.features-tabs .tab-btn {
  background: transparent !important;
  border: none !important;
  color: rgba(200, 194, 232, 0.62) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: color .3s ease, background .3s ease, box-shadow .3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: none !important;
}
.features-tabs .tab-btn::before,
.features-tabs .tab-btn::after { display: none !important; }
.features-tabs .tab-btn i { color: inherit !important; font-size: 0.9rem !important; transition: color .3s ease !important; }
.features-tabs .tab-btn:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.035) !important;
}
.features-tabs .tab-btn.active {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  color: #0a0a10 !important;
  box-shadow:
    0 10px 24px -6px rgba(200, 194, 232, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}
.features-tabs .tab-btn.active i { color: #0a0a10 !important; }

/* --- Tab content headings --- */
.features-tabs .tab-heading {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
  letter-spacing: -0.01em !important;
  text-align: center !important;
  margin: 0 0 8px !important;
}
.features-tabs .media-subtitle,
.features-tabs .features-subtitle {
  color: rgba(200, 194, 232, 0.55) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  text-align: center !important;
  margin: 0 auto 12px !important;
}
.features-tabs .media-divider,
.features-tabs .features-divider {
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.35), transparent) !important;
  height: 1px !important;
  width: 80px !important;
  margin: 6px auto 14px !important;
  border: none !important;
}

/* --- Media panels (keep tilts, re-theme colors) --- */
.features-tabs .media-panel {
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.92) 0%, rgba(8, 8, 12, 0.96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 16px !important;
  box-shadow:
    0 24px 50px -20px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease !important;
}
.features-tabs .media-panel:hover {
  border-color: rgba(200, 194, 232, 0.22) !important;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.95),
    0 0 60px -20px rgba(200, 194, 232, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}
.features-tabs .media-panel-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
  background: transparent !important;
  border: 0 !important;
  color: rgba(200, 194, 232, 0.55) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  margin: 2px 0 10px 4px !important;
  border-radius: 0 !important;
  text-align: left !important;
  text-shadow: none !important;
  box-shadow: none !important;
}
.features-tabs .media-panel-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(138, 125, 255, 0.75);
  box-shadow: 0 0 8px rgba(138, 125, 255, 0.5);
  flex-shrink: 0;
}
.features-tabs .media-panel-body {
  background: rgba(6, 6, 10, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}
.features-tabs .media-panel-body::before,
.features-tabs .media-panel-body::after { display: none !important; }
.features-tabs .media-zoom-hint {
  background: rgba(10, 10, 14, 0.82) !important;
  color: #c8c2e8 !important;
  border: 1px solid rgba(200, 194, 232, 0.22) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 6px 11px !important;
  border-radius: 8px !important;
}

/* --- Feature cards (Aimbot / Visuals / World / Settings) --- */
.features-tabs .feature-card {
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.9) 0%, rgba(8, 8, 12, 0.96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  padding: 22px 20px !important;
  box-shadow: 0 20px 40px -22px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  position: relative;
  overflow: hidden !important;
  transition: border-color .3s ease, transform .3s ease !important;
}
.features-tabs .feature-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  height: 1px !important;
  width: auto !important;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.45), transparent) !important;
  opacity: 0.7 !important;
  border: none !important;
  border-radius: 0 !important;
  filter: none !important;
  transform: none !important;
}
.features-tabs .feature-card::after { display: none !important; }
.features-tabs .feature-card:hover {
  border-color: rgba(200, 194, 232, 0.22) !important;
  transform: translateY(-3px) !important;
}
.features-tabs .feature-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 14px !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.features-tabs .feature-card-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 9px !important;
  background: rgba(200, 194, 232, 0.1) !important;
  border: 1px solid rgba(200, 194, 232, 0.25) !important;
  color: #c8c2e8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.9rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  flex-shrink: 0;
}
.features-tabs .feature-card h4 {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
  text-shadow: none !important;
}
.features-tabs .feature-list-wrap ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  max-height: 320px;
  overflow-y: auto;
}
.features-tabs .feature-list-wrap ul::-webkit-scrollbar { width: 4px; }
.features-tabs .feature-list-wrap ul::-webkit-scrollbar-thumb {
  background: rgba(200, 194, 232, 0.22);
  border-radius: 4px;
}
.features-tabs .feature-list-wrap ul::-webkit-scrollbar-track { background: transparent; }
.features-tabs .feature-list-wrap li {
  color: rgba(235, 232, 248, 0.82) !important;
  background: transparent !important;
  border: none !important;
  padding: 4px 0 4px 24px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.83rem !important;
  font-weight: 500 !important;
  position: relative;
  list-style: none !important;
  margin: 0 !important;
}
.features-tabs .feature-list-wrap li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 15px !important;
  height: 15px !important;
  border-radius: 5px !important;
  background: rgba(200, 194, 232, 0.08) !important;
  border: 1px solid rgba(200, 194, 232, 0.25) !important;
  box-shadow: none !important;
}
.features-tabs .feature-list-wrap li::after {
  content: '' !important;
  position: absolute !important;
  left: 4px !important;
  top: 50% !important;
  transform: translateY(-60%) rotate(-45deg) !important;
  width: 7px !important;
  height: 3px !important;
  border-left: 1.5px solid #c8c2e8 !important;
  border-bottom: 1.5px solid #c8c2e8 !important;
  background: transparent !important;
  border-radius: 0 !important;
  opacity: 0.85 !important;
}

/* --- System cards --- */
.features-tabs .system-grid { gap: 16px !important; }
.features-tabs .system-card {
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.9) 0%, rgba(8, 8, 12, 0.96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-shadow: 0 14px 30px -20px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  transition: border-color .3s ease, transform .3s ease !important;
}
.features-tabs .system-card:hover {
  border-color: rgba(200, 194, 232, 0.22) !important;
  transform: translateY(-2px) !important;
}
.features-tabs .system-card > i:first-child {
  width: 44px !important;
  height: 44px !important;
  border-radius: 11px !important;
  background: rgba(200, 194, 232, 0.08) !important;
  border: 1px solid rgba(200, 194, 232, 0.22) !important;
  color: #c8c2e8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}
.features-tabs .system-card h4 {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 3px !important;
}
.features-tabs .system-card p {
  color: rgba(200, 194, 232, 0.6) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  margin: 0 !important;
}
.features-tabs .system-note {
  max-width: 720px !important;
  margin: 24px auto 0 !important;
  padding: 14px 20px !important;
  background: rgba(200, 194, 232, 0.04) !important;
  border: 1px solid rgba(200, 194, 232, 0.18) !important;
  border-radius: 12px !important;
  color: rgba(235, 232, 248, 0.85) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  justify-content: center !important;
  text-align: left !important;
  box-shadow: 0 14px 30px -22px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}
.features-tabs .system-note::before,
.features-tabs .system-note::after { display: none !important; }
.features-tabs .system-note i {
  color: #c8c2e8 !important;
  flex-shrink: 0;
  font-size: 1rem !important;
  filter: none !important;
  text-shadow: none !important;
}
.features-tabs .system-note b {
  color: #9fd8b5 !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.9em !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-shadow: none !important;
  background: transparent !important;
}

/* --- Mute the purple-heavy tones inside media preview screenshots
        so the game UI images blend with the lavender theme --- */
.features-tabs .media-panel-body img {
  filter: saturate(0.65) brightness(0.92) hue-rotate(-10deg) contrast(1.02) !important;
  transition: filter .4s ease, transform .4s ease !important;
}
.features-tabs .media-panel:hover .media-panel-body img {
  filter: saturate(0.8) brightness(1) hue-rotate(-6deg) contrast(1.03) !important;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .features-tabs { padding: 34px 18px 54px !important; }
  .features-tabs .tab-buttons { width: auto !important; flex-wrap: wrap !important; justify-content: center !important; }
}
@media (max-width: 560px) {
  .features-tabs .tab-btn { padding: 8px 14px !important; font-size: 0.72rem !important; }
}

/* ============================================================
   SHOWCASE — premium video + interface preview (v2)
   Header w/ kicker + two unified monochrome cards
   ============================================================ */
.showcase {
  position: relative;
  max-width: 1240px !important;
  margin: 40px auto 60px !important;
  padding: 0 24px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  z-index: 1;
  overflow: visible;
}
.showcase::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90%);
  height: 500px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200, 194, 232, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

/* --- Header --- */
.showcase-head {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(200, 194, 232, 0.06);
  border: 1px solid rgba(200, 194, 232, 0.2);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(200, 194, 232, 0.75);
  margin-bottom: 18px;
}
.showcase-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8c2e8;
  box-shadow: 0 0 8px rgba(200, 194, 232, 0.6);
  animation: hv-pulse-small 2.2s ease-in-out infinite;
}
.showcase-title {
  color: #ffffff !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  margin: 0 0 14px !important;
  text-align: center !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}
.showcase-title span {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: drop-shadow(0 0 24px rgba(200, 194, 232, 0.25));
}
.showcase-lead {
  color: rgba(220, 216, 240, 0.62) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  margin: 0 auto !important;
  max-width: 620px;
}

/* --- Combo wrapper --- */
.combo-wrapper {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  justify-content: center !important;
  align-items: flex-start !important;
  perspective: 1300px;
}

/* --- Unified combo card (both video + image share same language) --- */
.combo-card {
  flex: 1 1 460px !important;
  max-width: 560px !important;
  border-radius: 20px !important;
  padding: 14px !important;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.92) 0%, rgba(8, 8, 12, 0.96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(18px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
  box-shadow:
    0 28px 60px -24px rgba(0, 0, 0, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(200, 194, 232, 0.04) !important;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1), border-color .4s ease, box-shadow .4s ease !important;
}
/* Top accent hairline */
.combo-card::before {
  content: '' !important;
  position: absolute !important;
  inset: auto !important;
  top: 0 !important;
  left: 15% !important;
  right: 15% !important;
  bottom: auto !important;
  height: 1px !important;
  width: auto !important;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.45), transparent) !important;
  filter: none !important;
  opacity: 0.8 !important;
  animation: none !important;
  border-radius: 0 !important;
  z-index: 2 !important;
}
/* Kill the old animated shine sweep from ::after (we use .shine instead) */
.combo-card::after { display: none !important; }

/* Subtle grid pattern inside card */
.combo-card .shine {
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(200, 194, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 194, 232, 0.04) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 85%) !important;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 85%) !important;
  animation: none !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.7 !important;
  left: auto !important;
  top: auto !important;
}

.combo-card:hover {
  border-color: rgba(200, 194, 232, 0.24) !important;
  box-shadow:
    0 34px 80px -24px rgba(0, 0, 0, 1),
    0 0 60px -18px rgba(200, 194, 232, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  transform: translateY(-6px) !important;
  background: linear-gradient(180deg, rgba(16, 16, 22, 0.94) 0%, rgba(10, 10, 14, 0.98) 100%) !important;
}

/* Tilt effect subtler */
.tilt-left  { transform: rotateY(-2deg) rotateX(0.5deg) !important; }
.tilt-right { transform: rotateY(2deg)  rotateX(-0.5deg) !important; }
.combo-card:hover.tilt-left  { transform: rotateY(-1deg) rotateX(0deg) translateY(-6px) !important; }
.combo-card:hover.tilt-right { transform: rotateY(1deg)  rotateX(0deg) translateY(-6px) !important; }

/* Video & image inside the card */
.combo-card video,
.combo-card img {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  display: block !important;
  border-radius: 12px !important;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.95) !important;
  filter: saturate(1) contrast(1.02) brightness(0.98) !important;
  transition: filter .4s ease, transform .4s ease !important;
}
/* Mute the purple tones in the interface screenshot to match theme */
.combo-card img {
  filter: saturate(0.65) brightness(0.95) hue-rotate(-12deg) contrast(1.02) !important;
}
.combo-card:hover img {
  filter: saturate(0.8) brightness(1) hue-rotate(-8deg) contrast(1.04) !important;
  transform: scale(1.005) !important;
}
.combo-card:hover video {
  transform: scale(1.005) !important;
  filter: saturate(1.05) contrast(1.04) brightness(1) !important;
}

/* Floating tag (top-left of each card) */
.combo-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  background: rgba(10, 10, 14, 0.7);
  border: 1px solid rgba(200, 194, 232, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4cff0;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.combo-tag i { color: #c8c2e8; font-size: 0.8rem; }
.combo-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ab696;
  box-shadow: 0 0 0 3px rgba(122, 182, 150, 0.15), 0 0 10px rgba(122, 182, 150, 0.55);
  animation: hv-pulse 2s ease-in-out infinite;
}

/* --- Vertical ticker (below the video) --- */
.video-with-ticker {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
  flex: 1 1 460px !important;
  max-width: 560px !important;
}
.video-with-ticker .combo-card { flex: 0 0 auto !important; width: 100% !important; max-width: 100% !important; }
.vertical-ticker {
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 12px 22px !important;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.88) 0%, rgba(8, 8, 12, 0.94) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 100px !important;
  backdrop-filter: blur(12px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
  box-shadow: 0 16px 36px -22px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  overflow: visible !important;
  transition: border-color .3s ease, transform .3s ease !important;
}
.vertical-ticker:hover {
  border-color: rgba(200, 194, 232, 0.22) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.95), 0 0 30px -12px rgba(200, 194, 232, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}
.vertical-ticker > i {
  color: #c8c2e8 !important;
  font-size: 0.82rem;
  animation: hv-pulse-small 2.4s ease-in-out infinite;
}
.vertical-text {
  color: rgba(235, 232, 248, 0.92) !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
  position: static !important;
  z-index: auto !important;
  white-space: nowrap;
}

/* --- Responsive --- */
@media (max-width: 1000px) {
  .combo-wrapper { gap: 20px !important; }
  .combo-card, .video-with-ticker { flex: 1 1 100% !important; max-width: 600px !important; }
  .tilt-left, .tilt-right { transform: none !important; }
}
@media (max-width: 560px) {
  .showcase { gap: 32px; padding: 0 16px !important; }
  .combo-card { padding: 10px !important; }
  .combo-tag { top: 16px; left: 16px; font-size: 0.6rem; padding: 5px 9px; }
}

/* ============================================================
   HOW IT WORKS — monochrome premium redesign
   ============================================================ */
.howitworks-section {
  position: relative !important;
  max-width: 1200px !important;
  margin: 40px auto !important;
  padding: 70px 24px 60px !important;
  text-align: center !important;
  overflow: visible !important;
  z-index: 1;
}
.howitworks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 20%, rgba(200, 194, 232, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.howitworks-section .how-title {
  color: #ffffff !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  margin: 0 0 14px !important;
  text-transform: none !important;
  text-shadow: none !important;
  filter: none !important;
}
.howitworks-section .how-title span {
  background: linear-gradient(180deg, #ffffff 0%, #c8c2e8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: drop-shadow(0 0 26px rgba(200, 194, 232, 0.25)) !important;
  text-transform: lowercase !important;
}
.howitworks-section .how-divider {
  width: 60px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.5), transparent) !important;
  box-shadow: none !important;
  margin: 10px auto 20px !important;
  border-radius: 0 !important;
}
.howitworks-section .how-intro {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 18px !important;
  background: rgba(200, 194, 232, 0.05) !important;
  border: 1px solid rgba(200, 194, 232, 0.18) !important;
  border-radius: 100px !important;
  color: rgba(235, 232, 248, 0.78) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  margin: 0 auto 42px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.7) !important;
}
.howitworks-section .how-intro i {
  color: #c8c2e8 !important;
  font-size: 0.9rem !important;
}

/* Steps row with connecting line */
.howitworks-section .how-steps {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}
.howitworks-section .how-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.22), rgba(200, 194, 232, 0.22), transparent);
  z-index: 0;
  pointer-events: none;
}

.howitworks-section .how-card {
  position: relative !important;
  width: auto !important;
  max-width: none !important;
  padding: 30px 22px 24px !important;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.92) 0%, rgba(8, 8, 12, 0.96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  box-shadow:
    0 24px 50px -24px rgba(0, 0, 0, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  text-align: center !important;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease !important;
  z-index: 1;
}
.howitworks-section .how-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 15% !important;
  right: 15% !important;
  bottom: auto !important;
  height: 1px !important;
  width: auto !important;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.45), transparent) !important;
  opacity: 0.7 !important;
  border: none !important;
  border-radius: 0 !important;
  filter: none !important;
}
.howitworks-section .how-card:hover {
  border-color: rgba(200, 194, 232, 0.22) !important;
  background: linear-gradient(180deg, rgba(16, 16, 22, 0.94) 0%, rgba(10, 10, 14, 0.98) 100%) !important;
  transform: translateY(-5px) !important;
  box-shadow:
    0 30px 60px -24px rgba(0, 0, 0, 1),
    0 0 50px -20px rgba(200, 194, 232, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.howitworks-section .how-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, rgba(200, 194, 232, 0.12) 0%, rgba(14, 14, 18, 0.95) 100%) !important;
  border: 1px solid rgba(200, 194, 232, 0.3) !important;
  color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin: 0 auto 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-shadow: none !important;
  box-shadow:
    0 10px 24px -10px rgba(0, 0, 0, 0.9),
    0 0 0 4px rgba(14, 14, 18, 0.95),
    0 0 0 5px rgba(200, 194, 232, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  position: relative;
  z-index: 2;
}
.howitworks-section .how-card:hover .how-icon {
  box-shadow:
    0 14px 30px -10px rgba(0, 0, 0, 1),
    0 0 0 4px rgba(14, 14, 18, 0.95),
    0 0 0 5px rgba(200, 194, 232, 0.3),
    0 0 24px rgba(200, 194, 232, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(200, 194, 232, 0.5) !important;
}

.howitworks-section .how-card h3 {
  color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 8px !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}
.howitworks-section .how-card p {
  color: rgba(220, 216, 240, 0.62) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ============================================================
   PAYMENT SECTION — matches status-box / pricing cards
   ============================================================ */
.payment-section {
  position: relative !important;
  max-width: 1180px !important;
  margin: 24px auto 56px !important;
  padding: 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  text-align: left !important;
  overflow: visible !important;
  z-index: 1;
}
.payment-section::before {
  display: none !important;
}
.payment-methods-box,
.payment-paypal-bar {
  margin: 0 !important;
}
.payment-methods-box .payment-logos-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  flex-shrink: 0 !important;
  flex-wrap: wrap !important;
}
.payment-methods-box .payment-logos-row i {
  font-size: 1.65rem !important;
  color: rgba(220, 216, 240, 0.5) !important;
  transition: color .25s ease, transform .25s ease !important;
  line-height: 1 !important;
}
.payment-methods-box .payment-logos-row i:hover {
  color: #c8c2e8 !important;
  transform: translateY(-1px);
}
.payment-paypal-bar .status-icon img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
  display: block !important;
  opacity: 0.92;
}
.payment-paypal-bar .status-text p a {
  color: #c8c2e8 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(200, 194, 232, 0.22);
  transition: color .2s ease, border-color .2s ease;
}
.payment-paypal-bar .status-text p a:hover {
  color: #ffffff !important;
  border-bottom-color: rgba(200, 194, 232, 0.45);
}
.payment-paypal-bar .discord-btn {
  flex-shrink: 0 !important;
  padding: 10px 18px !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .payment-section {
    margin: 20px auto 44px !important;
    gap: 12px !important;
  }
  .payment-methods-box,
  .payment-paypal-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  .payment-methods-box .payment-logos-row {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }
  .payment-paypal-bar .discord-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 860px) {
  .howitworks-section .how-steps { grid-template-columns: 1fr !important; max-width: 440px !important; }
  .howitworks-section .how-steps::before { display: none !important; }
}

/* ============================================================
   FAQ CTA + BOTTOM CTA — status-box aligned
   ============================================================ */
.cta-section {
  padding: 28px 0 56px !important;
  position: relative;
  z-index: 1;
}
.cta-section .container {
  max-width: 1180px;
}
.cta-bottom-box {
  max-width: 1180px !important;
  margin: 0 auto !important;
}
.cta-bottom-box .status-text h4 {
  font-size: 1rem !important;
}
.cta-bottom-btn {
  flex-shrink: 0 !important;
  padding: 10px 18px !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
}
.faq-cta-box .status-icon i {
  color: #9aa3ff !important;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 20px 0 44px !important;
  }
  .cta-bottom-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  .cta-bottom-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ============================================================
   HERO CARD — clean, minimal redesign (v3)
   Framed image + simple chip row. Matches the rest of the site.
   ============================================================ */
.hero .hero-card {
  position: relative !important;
  padding: 18px !important;
  background: linear-gradient(180deg, rgba(16, 16, 22, 0.75) 0%, rgba(10, 10, 14, 0.85) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 20px !important;
  overflow: visible !important;
  backdrop-filter: blur(12px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(130%) !important;
  box-shadow:
    0 40px 80px -24px rgba(0, 0, 0, 0.95),
    0 0 60px -20px rgba(200, 194, 232, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  width: calc(100% + 50px);
  max-width: 900px;
  margin-left: -20px;
  margin-right: -30px;
  transform-origin: center center;
  transform: perspective(1600px) rotateY(-10deg) rotateX(2deg) !important;
  transition: transform .5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color .3s ease, box-shadow .4s ease;
}
.hero .hero-card:hover {
  transform: perspective(1600px) rotateY(-6deg) rotateX(1deg) translateY(-4px) !important;
  border-color: rgba(200, 194, 232, 0.2) !important;
  box-shadow:
    0 50px 100px -24px rgba(0, 0, 0, 1),
    0 0 80px -18px rgba(200, 194, 232, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}
/* Thin lavender hairline on top */
.hero .hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 194, 232, 0.4), transparent);
  pointer-events: none;
}

/* Image */
.hero .hero-card .hero-media {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 12px;
  overflow: hidden;
}
.hero .hero-card .hero-media img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 12px !important;
  transform: none !important;
  margin: 0 !important;
  filter: saturate(0.7) brightness(0.97) hue-rotate(-10deg) !important;
  transition: filter .4s ease !important;
  object-fit: contain !important;
}
.hero .hero-card:hover .hero-media img {
  filter: saturate(0.82) brightness(1) hue-rotate(-8deg) !important;
}

/* Chip row below image */
.hero .hero-card .hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
  padding: 0 2px;
}
.hero .hero-card .hero-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(200, 194, 232, 0.04);
  border: 1px solid rgba(200, 194, 232, 0.14);
  border-radius: 100px;
  color: rgba(230, 228, 245, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.hero .hero-card .hero-chips .chip i {
  color: #c8c2e8;
  font-size: 0.84rem;
  opacity: 0.9;
}
.hero .hero-card .hero-chips .chip:hover {
  background: rgba(200, 194, 232, 0.08);
  border-color: rgba(200, 194, 232, 0.28);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .hero-card {
    width: 100% !important;
    max-width: 100%;
    margin: 40px auto 0 !important;
    transform: perspective(1400px) rotateY(-6deg) rotateX(1deg) !important;
  }
  .hero .hero-card:hover {
    transform: perspective(1400px) rotateY(-3deg) rotateX(0.5deg) translateY(-3px) !important;
  }
}
@media (max-width: 560px) {
  .hero .hero-card {
    padding: 10px !important;
    border-radius: 14px !important;
    transform: none !important;
  }
  .hero .hero-card:hover { transform: translateY(-2px) !important; }
  .hero .hero-card .hero-chips .chip { font-size: 0.72rem; padding: 6px 10px; }
}

/* ============================================================
   BRAND LOCKUP — "HAVOLITH / Undetected Software"
   Large bold wordmark with fine subtitle below, using real logo.
   ============================================================ */
.nav .brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  text-decoration: none !important;
  padding: 2px 0 !important;
}
.nav .brand .logo.logo-img {
  width: 120px !important;
  height: 120px !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  filter: none !important;
  transition: transform .3s ease;
  margin: -26px -14px -14px -14px !important;
}
.nav .brand:hover .logo.logo-img {
  transform: translateY(-1px) scale(1.03);
}
.nav .brand .logo.logo-img::after,
.nav .brand .logo.logo-img::before {
  content: none !important;
  display: none !important;
}
.nav .brand:hover .logo.logo-img {
  filter: none !important;
}
/* Keep fallback rule (old .logo div) harmless if present */
.nav .brand .logo:not(.logo-img) {
  width: 34px !important;
  height: 34px !important;
  border-radius: 9px !important;
  flex-shrink: 0;
}
.nav .brand .brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  gap: 5px;
}
.nav .brand .brand-text b {
  font-family: 'Space Grotesk', 'Sora', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #ffffff !important;
  text-transform: uppercase;
  line-height: 1 !important;
}
.nav .brand .brand-text .brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(200, 194, 232, 0.6);
  line-height: 1;
  white-space: nowrap;
}
.nav .brand:hover .brand-text .brand-tag {
  color: rgba(200, 194, 232, 0.85);
  transition: color .25s ease;
}

@media (max-width: 560px) {
  .nav .brand { gap: 0 !important; }
  .nav .brand .logo.logo-img { width: 86px !important; height: 86px !important; margin: -18px -10px -10px -10px !important; border: 0 !important; box-shadow: none !important; filter: none !important; background: none !important; }
  .nav .brand .logo:not(.logo-img) { width: 28px !important; height: 28px !important; }
  .nav .brand .brand-text b { font-size: 1.15rem !important; letter-spacing: 0.06em !important; }
  .nav .brand .brand-text .brand-tag { font-size: 0.65rem; }
}

/* ============================================================
   BRAND ACCENT SYNC — match logo's violet chevron (#8a7dff)
   Keeps platinum-lavender body language but injects the
   logo's warmer violet on brand-critical glows and CTAs.
   ============================================================ */
:root {
  --hv-brand: #8a7dff;
  --hv-brand-soft: rgba(138, 125, 255, 0.35);
  --hv-brand-glow: rgba(138, 125, 255, 0.18);
}

/* Primary CTA — shift glow/border towards brand violet (keeps light face) */
.btn.btn--pri,
.cta-btn,
.highlight-btn {
  border: 1px solid rgba(138, 125, 255, 0.45) !important;
  box-shadow:
    0 12px 28px rgba(138, 125, 255, 0.22),
    0 2px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}
.btn.btn--pri:hover,
.cta-btn:hover,
.highlight-btn:hover {
  border-color: rgba(138, 125, 255, 0.65) !important;
  box-shadow:
    0 16px 36px rgba(138, 125, 255, 0.32),
    0 4px 10px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* Kicker dots & pulsing brand accents pick up the violet */
.proof-kicker-dot,
.showcase-kicker-dot,
.combo-tag-dot {
  background: var(--hv-brand) !important;
  box-shadow:
    0 0 0 3px rgba(138, 125, 255, 0.18),
    0 0 12px rgba(138, 125, 255, 0.5) !important;
}

/* Hero card glow tinted toward brand */
.hero .hero-card {
  box-shadow:
    0 40px 80px -24px rgba(0, 0, 0, 0.95),
    0 0 60px -20px rgba(138, 125, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}
.hero .hero-card:hover {
  box-shadow:
    0 50px 100px -24px rgba(0, 0, 0, 1),
    0 0 80px -18px rgba(138, 125, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* Hero headline "Havolith" word echoes logo violet subtly */
.hero .headline span:not(.stroke) {
  background: linear-gradient(135deg, #ffffff 0%, #c8c2e8 40%, #8a7dff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* ============================================================
   PRICING HEADER — stacked hero (eyebrow / title / tagline / trust)
   ============================================================ */
.pricing-header-section {
  padding: 76px 0 10px !important;
  margin-bottom: 0 !important;
  position: relative;
  text-align: center;
  overflow: visible !important;
  opacity: 1 !important;
  animation: none !important;
}
.pricing-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 88%);
  height: 320px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(138, 125, 255, 0.11) 0%, transparent 72%),
    radial-gradient(ellipse 60% 40% at 50% 85%, rgba(200, 194, 232, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: none !important;
  border-radius: 0 !important;
}
.pricing-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 20px;
}

/* Eyebrow pill */
.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(200, 194, 232, 0.035);
  border: 1px solid rgba(200, 194, 232, 0.16);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 194, 232, 0.72);
}
.pricing-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8c2e8;
  box-shadow: 0 0 10px rgba(200, 194, 232, 0.55);
  animation: hv-pulse-small 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Main title */
#pricing .pricing-header h2.pricing-hero-title {
  margin: 0 0 22px !important;
  padding: 0 !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(2.85rem, 7.5vw, 4.75rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  text-align: center !important;
  background: linear-gradient(105deg, #f4f2ff 0%, #d4cef5 38%, #b8a8f0 62%, #8a7dff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: drop-shadow(0 4px 32px rgba(138, 125, 255, 0.22));
  display: block !important;
  flex-direction: unset !important;
}

/* Tagline row */
.pricing-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin-bottom: 26px;
  max-width: 620px;
}
.pricing-tagline-soft {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.72rem, 1.05vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(160, 160, 171, 0.85);
}
.pricing-tagline-amp {
  color: rgba(200, 194, 232, 0.45);
  font-weight: 400;
  letter-spacing: 0;
  padding: 0 2px;
}
.pricing-tagline-box {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(0.72rem, 1.05vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #eef0f4;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 194, 232, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 4px 16px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.pricing-tagline-box:hover {
  border-color: rgba(200, 194, 232, 0.28);
  background: rgba(200, 194, 232, 0.06);
}

/* Trust badge */
.pricing-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 10px;
  border-radius: 999px;
  background: rgba(200, 194, 232, 0.035);
  border: 1px solid rgba(200, 194, 232, 0.14);
}
.pricing-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(200, 194, 232, 0.08);
  border: 1px solid rgba(200, 194, 232, 0.16);
  color: var(--hv-accent, #c8c2e8);
  font-size: 0.82rem;
}
.pricing-trust-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(160, 160, 171, 0.9);
  line-height: 1.3;
  text-align: left;
}
.pricing-trust-text strong {
  color: #eef0f4;
  font-weight: 600;
}

@media (max-width: 640px) {
  .pricing-header-section {
    padding: 60px 0 8px !important;
  }
  .pricing-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
  #pricing .pricing-header h2.pricing-hero-title {
    font-size: clamp(2.15rem, 9vw, 3.35rem) !important;
    margin-bottom: 16px !important;
  }
  .pricing-tagline {
    gap: 7px 8px;
    margin-bottom: 22px;
  }
  .pricing-tagline-soft,
  .pricing-tagline-box {
    font-size: 0.68rem;
  }
  .pricing-tagline-box {
    padding: 5px 11px;
    border-radius: 7px;
  }
  .pricing-trust {
    padding: 8px 14px 8px 8px;
    gap: 10px;
  }
  .pricing-trust-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .pricing-trust-text {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
}

/* Tight gap between pricing hero and plan cards */
.pricing-header-section + .pricing-section,
#pricing + .pricing-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.pricing-header-section + .pricing-section .product-tag,
#pricing + .pricing-section .product-tag {
  margin-top: 0 !important;
}

/* =============== NAV PRODUCT DROPDOWN =============== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: var(--hv-text-2) !important;
  cursor: pointer;
  position: relative;
  transition: color .2s ease;
  line-height: 1;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--hv-text) !important;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--hv-accent);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown-caret {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform .25s ease, opacity .2s ease;
}

.nav-dropdown.is-open .nav-dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 280px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(12, 12, 16, 0.92);
  border: 1px solid var(--hv-border);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(200, 194, 232, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: saturate(150%) blur(22px);
  -webkit-backdrop-filter: saturate(150%) blur(22px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease, visibility .2s ease;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(12, 12, 16, 0.92);
  border-left: 1px solid var(--hv-border);
  border-top: 1px solid var(--hv-border);
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--hv-text) !important;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: auto;
}

.nav-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 14px !important;
  border-radius: 12px;
  color: var(--hv-text-2) !important;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  position: relative;
}

.nav-dropdown-item::after { display: none !important; }

.nav-dropdown-item:hover {
  background: rgba(200, 194, 232, 0.06);
  color: var(--hv-text) !important;
}

.nav-dropdown-item-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 194, 232, 0.08);
  border: 1px solid var(--hv-border);
  color: var(--hv-accent);
  font-size: 0.95rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.nav-dropdown-item:hover .nav-dropdown-item-ico {
  background: rgba(200, 194, 232, 0.14);
  border-color: rgba(200, 194, 232, 0.22);
  color: #ffffff;
}

.nav-dropdown-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.nav-dropdown-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hv-text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-dropdown-item-sub {
  font-size: 0.76rem;
  color: var(--hv-text-3, #65656e);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.nav-dropdown-item-arrow {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: var(--hv-text-3, #65656e);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}

.nav-dropdown-item:hover .nav-dropdown-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--hv-accent);
}

@media (max-width: 900px) {
  .nav-dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(-6px);
    min-width: 260px;
  }
  .nav-dropdown-menu::before { left: 24px; transform: rotate(45deg); }
  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: translateX(0) translateY(0);
  }
}

/* =============== PRODUCT TAG (compact Rust Script / Rust Cheat label) =============== */
.product-tag {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto 18px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 34px;
}

.product-tag > .product-tag-chip {
  grid-column: 1;
  justify-self: start;
}

.product-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(200, 194, 232, 0.04);
  border: 1px solid var(--hv-border);
  color: var(--hv-text-3, #7a7a85);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-tag-chip--strong {
  background: linear-gradient(135deg, rgba(200, 194, 232, 0.12), rgba(138, 125, 255, 0.08));
  border-color: rgba(200, 194, 232, 0.2);
  color: var(--hv-text);
}

.product-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hv-accent);
  box-shadow: 0 0 8px rgba(200, 194, 232, 0.5);
  animation: productTagPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes productTagPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.product-tag-text {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.product-tag-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  letter-spacing: -0.01em !important;
  color: var(--hv-text) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.product-tag-title i {
  font-size: 0.9rem;
  color: var(--hv-accent);
  opacity: 0.85;
}

.product-tag-title span {
  background: linear-gradient(135deg, #ffffff 0%, #c8c2e8 55%, #8a7dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-tag-sub {
  color: var(--hv-text-3, #7a7a85) !important;
  font-size: 0.82rem !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.01em;
}

@media (max-width: 840px) {
  .product-tag {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    margin-bottom: 14px;
    min-height: 0;
  }
  .product-tag > .product-tag-chip {
    grid-column: 1;
    justify-self: center;
  }
  .product-tag-text {
    grid-column: 1;
    justify-self: center;
  }
  .product-tag-chip { font-size: 0.58rem; padding: 4px 10px; letter-spacing: 0.14em; white-space: normal; text-align: center; }
  .product-tag-title { font-size: 1rem !important; }
}


/* ============================================================
   SHARED NAV / DROPDOWN / FOOTER POLISH (v5)
   Extracted from index.html inline critical-inline-css so that
   legal/static pages (terms, privacy, 404) match the homepage.
   ============================================================ */

/* ---- NAV LOGO SIZE FIX ---- */
.nav .brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.nav .brand .logo.logo-img {
  width: 72px !important; height: 72px !important;
  margin: 0 !important;
  border-radius: 0 !important; border: 0 !important;
  background: none !important; box-shadow: none !important;
  object-fit: contain; object-position: center;
  display: block; flex-shrink: 0; filter: none !important;
}
.nav .brand .brand-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1.15 !important;
}
@media (max-width: 760px) {
  .nav .brand .logo.logo-img { width: 56px !important; height: 56px !important; }
}

/* ---- NAV PRODUCT DROPDOWN ---- */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: none; padding: 0; margin: 0;
  font: inherit; font-size: 0.92rem !important; font-weight: 500 !important;
  color: #a0a0ab !important; cursor: pointer; position: relative;
  transition: color .2s ease; line-height: 1;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger { color: #eef0f4 !important; }
.nav-dropdown-trigger::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: #c8c2e8; transform: scaleX(0);
  transition: transform .25s ease; transform-origin: left;
}
.nav-dropdown-trigger:hover::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after { transform: scaleX(1); }
.nav-dropdown-caret { font-size: 0.65rem; opacity: 0.7; transition: transform .25s ease, opacity .2s ease; }
.nav-dropdown.is-open .nav-dropdown-caret,
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); opacity: 1; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translate(-50%, -6px); min-width: 280px; padding: 8px;
  border-radius: 16px; background: rgba(12, 12, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,194,232,0.06), 0 1px 0 rgba(255,255,255,0.04) inset;
  backdrop-filter: saturate(150%) blur(22px);
  -webkit-backdrop-filter: saturate(150%) blur(22px);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .25s ease, visibility .2s ease;
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px;
  background: rgba(12, 12, 16, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0;
  height: 14px; pointer-events: auto;
}
.nav-dropdown-item {
  display: flex !important; align-items: center; gap: 12px;
  padding: 12px 14px !important; border-radius: 12px;
  color: #a0a0ab !important; text-decoration: none !important;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  position: relative;
}
.nav-dropdown-item::after { display: none !important; }
.nav-dropdown-item:hover { background: rgba(200, 194, 232, 0.06); color: #eef0f4 !important; }
.nav-dropdown-item-ico {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(200, 194, 232, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c8c2e8; font-size: 0.95rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.nav-dropdown-item:hover .nav-dropdown-item-ico {
  background: rgba(200, 194, 232, 0.14);
  border-color: rgba(200, 194, 232, 0.22);
  color: #ffffff;
}
.nav-dropdown-item-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.nav-dropdown-item-title { font-size: 0.92rem; font-weight: 600; color: #eef0f4; letter-spacing: -0.01em; line-height: 1.2; }
.nav-dropdown-item-sub { font-size: 0.76rem; color: #65656e; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; line-height: 1.3; }
.nav-dropdown-item-arrow {
  flex-shrink: 0; font-size: 0.72rem; color: #65656e;
  opacity: 0; transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}
.nav-dropdown-item:hover .nav-dropdown-item-arrow { opacity: 1; transform: translateX(0); color: #c8c2e8; }
@media (max-width: 900px) {
  .nav-dropdown-menu { left: 0; transform: translateX(0) translateY(-6px); min-width: 260px; }
  .nav-dropdown-menu::before { left: 24px; transform: rotate(45deg); }
  .nav-dropdown.is-open .nav-dropdown-menu { transform: translateX(0) translateY(0); }
}

/* ---- LEGAL PAGES (terms / privacy shared layout) ---- */
.legal-page {
  position: relative;
  padding: 140px 0 80px;
  z-index: 2;
  min-height: 100vh;
}
.legal-page::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(138, 125, 255, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(200, 194, 232, 0.05) 0%, transparent 60%);
}
.legal-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-meta { margin-bottom: 28px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  color: #a0a0ab !important;
  background: rgba(20, 20, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.legal-back:hover {
  color: #eef0f4 !important;
  border-color: rgba(200, 194, 232, 0.35);
  background: rgba(30, 28, 42, 0.75);
  transform: translateY(-1px);
}
.legal-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #c8c2e8 50%, #8a7dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #65656e;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.legal-prose {
  background: rgba(20, 20, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 38px 42px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.legal-prose p { color: #c8c8d2; font-size: 0.98rem; line-height: 1.72; margin: 0 0 18px; }
.legal-prose h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #eef0f4;
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-prose h2::before {
  content: '';
  width: 4px; height: 18px;
  background: linear-gradient(180deg, #8a7dff 0%, #c8c2e8 100%);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-prose ul { margin: 0 0 20px; padding: 0 0 0 22px; color: #c8c8d2; }
.legal-prose li { font-size: 0.96rem; line-height: 1.65; margin-bottom: 8px; }
.legal-prose li::marker { color: #8a7dff; }
.legal-prose strong { color: #eef0f4; font-weight: 600; }
.legal-prose a {
  color: #c8c2e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 194, 232, 0.35);
  transition: color .2s ease, border-color .2s ease;
}
.legal-prose a:hover { color: #ffffff; border-bottom-color: rgba(200, 194, 232, 0.8); }
.legal-prose em { color: #a0a0ab; font-style: italic; }

@media (max-width: 640px) {
  .legal-page { padding: 120px 0 60px; }
  .legal-prose { padding: 26px 22px; border-radius: 14px; }
  .legal-prose h2 { font-size: 1.05rem; }
  .legal-prose p, .legal-prose li { font-size: 0.92rem; }
}

/* =============== PRICING CARDS BALANCED — readable size, fits viewport =============== */
.pricing-section {
  padding-top: 28px !important;
  padding-bottom: 52px !important;
}

.pricing-wrapper {
  max-width: 740px !important;
  gap: 16px !important;
  padding-top: 12px !important;
  align-items: stretch !important;
}

.pricing-group.standard-plans.active {
  max-width: 980px !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.pricing-card,
.alt-pricing-card {
  position: relative !important;
  padding: 20px 20px 18px !important;
  border-radius: 18px !important;
}

@media (min-width: 861px) {
  .pricing-card.highlight,
  .alt-pricing-card.highlight {
    transform: none !important;
  }
  .pricing-card.highlight:hover,
  .alt-pricing-card.highlight:hover {
    transform: translateY(-4px) !important;
  }
}

.pricing-card > .status-badge,
.alt-pricing-card > .status-badge {
  position: static !important;
  margin: 0 0 10px !important;
  align-self: flex-start !important;
}

.status-badge {
  padding: 4px 10px 4px 20px !important;
}

.pricing-card-header {
  margin: 0 0 6px !important;
  padding-right: 0 !important;
}

.desc,
.alt-desc {
  margin: 0 0 10px !important;
  line-height: 1.48 !important;
}

.pricing-card .desc + .feature-list,
.alt-pricing-card .alt-desc + .alt-feature-list {
  padding-top: 12px !important;
}

.feature-list,
.alt-feature-list {
  gap: 6px !important;
  margin: 0 0 12px !important;
  flex: 1 1 auto !important;
}

.feature-list li,
.alt-feature-list li {
  line-height: 1.32 !important;
  gap: 9px !important;
}

.price-box,
.alt-price-box {
  padding: 10px 0 8px !important;
  margin: 0 0 8px !important;
}

.price-row {
  min-height: 0 !important;
}

.pricing-card .price-box .price-sub,
.alt-pricing-card .alt-sub {
  min-height: 0 !important;
  margin-top: 4px !important;
  line-height: 1.3 !important;
}

.payment-methods-inline {
  margin: 0 0 10px !important;
}

.btn-row {
  gap: 8px !important;
  margin-top: auto !important;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary,
.alt-pricing-card .alt-btn-primary {
  padding: 10px 14px !important;
}

.popular-tag {
  top: -12px !important;
  padding: 6px 16px !important;
}

.product-tag {
  margin-bottom: 12px !important;
}

.pricing-header-section + .pricing-section,
#pricing + .pricing-section {
  padding-top: 10px !important;
}

.pricing-header-section {
  padding: 64px 0 8px !important;
}

#pricing .pricing-header h2.pricing-hero-title {
  margin: 0 0 18px !important;
}

.pricing-eyebrow {
  margin-bottom: 16px !important;
}

.pricing-tagline {
  margin-bottom: 14px !important;
}

@media (max-width: 860px) {
  .pricing-wrapper {
    max-width: 420px !important;
  }
  .pricing-group.standard-plans.active {
    max-width: 420px !important;
  }
}

/* Hero H1 — stacked SEO headline */
.hero .headline.headline-stack {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}
.hero .headline .headline-main {
  color: #c8c2e8 !important;
  -webkit-text-fill-color: #c8c2e8 !important;
  background: none !important;
  font-weight: 800 !important;
}
.hero .headline .headline-accent {
  color: #6ee7a8 !important;
  -webkit-text-fill-color: #6ee7a8 !important;
  background: none !important;
  font-weight: 800 !important;
  text-shadow: 0 0 28px rgba(110, 231, 168, 0.22);
}
