/* ── FEATURES PAGE ── */

.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 20px; font-size: 13px;
  border: 1px solid rgba(108,62,244,0.35); background: rgba(108,62,244,0.08);
  color: #C084FC; margin-bottom: 28px;
}

/* MODULES NAV */
.modules-nav {
  position: sticky; top: 64px; z-index: 90;
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 12px 5vw;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108,62,244,0.15);
}
.mod-btn {
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  background: none; border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted); cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.mod-btn:hover { color: var(--text); border-color: rgba(168,85,247,0.4); }
.mod-btn.active { background: rgba(108,62,244,0.18); color: #A78BFA; border-color: rgba(108,62,244,0.5); }

/* SECTIONS */
.feat-section {
  padding: 72px 5vw;
  scroll-margin-top: 120px;
}
.feat-section.alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-section-header {
  display: flex; gap: 24px; align-items: flex-start;
  margin-bottom: 48px;
}
@media (max-width: 600px) { .feat-section-header { flex-direction: column; } }
.feat-section-icon {
  width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}

/* DETAIL GRID */
.feat-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.feat-detail-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat-section.alt .feat-detail-card { background: var(--bg3, #18181F); }
.feat-detail-card:hover { border-color: rgba(168,85,247,0.4); transform: translateY(-3px); }
.feat-detail-icon { font-size: 24px; margin-bottom: 12px; }
.feat-detail-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-detail-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* MEMBERSHIP TYPES */
.membership-type-card {
  border: 1px solid; border-radius: 16px; padding: 24px;
  transition: transform 0.2s;
}
.membership-type-card:hover { transform: translateY(-3px); }
.mt-icon { font-size: 28px; margin-bottom: 12px; }
.membership-type-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.membership-type-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.mt-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); opacity: 0.7;
}

/* MINI FEAT */
.mini-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text);
}
.mf-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c1, #6C3EF4); flex-shrink: 0;
}

/* CHANNELS */
.channels-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
  margin-bottom: 24px;
}
.channel-card {
  border-radius: 16px; padding: 24px; border: 1px solid var(--border);
  transition: transform 0.2s;
}
.channel-card:hover { transform: translateY(-3px); }
.channel-card.tg { background: rgba(0,136,204,0.08); border-color: rgba(0,136,204,0.25); }
.channel-card.vb { background: rgba(124,76,195,0.08); border-color: rgba(124,76,195,0.25); }
.channel-card.em { background: rgba(108,62,244,0.08); border-color: rgba(108,62,244,0.25); }
.channel-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.channel-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* SPECIAL SECTIONS */
.special-section { text-align: left; }
.special-badge {
  display: inline-block; padding: 5px 16px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  background: rgba(108,62,244,0.15); color: #A78BFA;
  border: 1px solid rgba(108,62,244,0.3);
  margin-bottom: 16px;
}

/* PWA CARDS */
.pwa-card {
  border: 1px solid; border-radius: 20px; padding: 32px;
  transition: transform 0.2s;
}
.pwa-card:hover { transform: translateY(-4px); }
.pwa-icon { font-size: 36px; margin-bottom: 16px; }
.pwa-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.pwa-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.pwa-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pwa-list li { font-size: 14px; color: var(--muted); padding-left: 16px; position: relative; }
.pwa-list li::before { content: '✓'; position: absolute; left: 0; color: #4ADE80; font-size: 12px; }

/* SITE FEATURES */
.site-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-feat:last-child { border-bottom: none; }
.sf-num {
  font-size: 13px; font-weight: 900; color: #F97316;
  flex-shrink: 0; margin-top: 2px;
}
.site-feat strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 4px; }
.site-feat p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

@media (max-width: 700px) {
  #website .section-content { grid-template-columns: 1fr !important; }
}


