/* ==========================================================================
   Wisdom Mining Private Limited (WM Typing & Smart Work Portal)
   Ultra-Fast, 100% Mobile & Desktop Responsive Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #10b981;
  --primary-hover: #059669;
  --primary-light: rgba(16, 185, 129, 0.12);
  --primary-glow: rgba(16, 185, 129, 0.35);
  --accent: #f59e0b;
  --accent-light: rgba(245, 158, 11, 0.12);
  --accent-cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.35);
  --secondary: #ffffff;
  --secondary-light: #94a3b8;
  --bg-main: #060b17;
  --bg-surface: #0b1426;
  --bg-card: rgba(13, 23, 44, 0.85);
  --bg-card-hover: rgba(18, 32, 60, 0.95);
  --border: rgba(255, 255, 255, 0.1);
  --border-focus: #10b981;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --danger: #f87171;
  --success: #34d399;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 25px -6px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 45px -12px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14.5px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 15% 65%, rgba(139, 92, 246, 0.08) 0%, transparent 45%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ================= Topbar ================= */
.topbar {
  background: rgba(4, 9, 20, 0.95);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #94a3b8;
}
.topbar-link:hover {
  color: #34d399;
}

/* Compact Blinking Live Records Button */
.live-records-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.topbar .live-records-badge {
  background: rgba(52, 211, 153, 0.18);
  border-color: rgba(52, 211, 153, 0.45);
  color: #34d399;
}
.live-records-badge:hover {
  background: #10b981;
  color: #060b17 !important;
  border-color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}
.live-records-badge:hover .pulse-green-dot {
  background: #060b17;
  box-shadow: 0 0 6px #060b17;
}
.pulse-green-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  animation: pulseBlink 1.4s infinite ease-in-out;
}
@keyframes pulseBlink {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ================= Header & Nav ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 15, 30, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #06b6d4);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}
.brand-title {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
  padding: 0.4rem 0.2rem;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: #10b981;
}
.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  transition: var(--transition);
}
.nav-link:hover:after, .nav-link.active:after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0.4rem;
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}
.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}
.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #1e293b;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
  background: #334155;
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: #ffffff;
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}
.btn-accent {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.btn-accent:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
}

/* ================= Notice Banner ================= */
.notice-strip {
  background: linear-gradient(90deg, #064e3b, #047857, #065f46);
  color: #ecfdf5;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}
.notice-tag {
  background: #fbbf24;
  color: #78350f;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* ================= Hero Section ================= */
.hero {
  padding: 3.5rem 0 2.5rem;
  background: transparent;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.text-highlight {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}
.stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.1);
  position: relative;
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}
.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-plan-mini-card {
  background: rgba(11, 20, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.hero-plan-mini-card:hover {
  background: rgba(16, 28, 54, 0.95);
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.18);
}
.hero-plan-mini-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff !important;
}
.hero-plan-mini-sub {
  color: #94a3b8 !important;
  font-size: 0.8rem;
  margin-top: 2px;
}
.hero-plan-mini-price {
  font-weight: 800;
  font-size: 1.05rem;
  font-family: 'Outfit', sans-serif;
}

.payout-methods-preview {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.method-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ================= Start Interactive Plans Component ================= */
.hero-plans-interactive {
  padding: 1.35rem 1.4rem;
}
.start-category-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  padding: 5px;
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.start-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 8px 4px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.start-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.start-tab-btn.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.start-tab-pane {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  animation: fadeInPane 0.22s ease-out;
}
.start-tab-pane.active {
  display: flex;
}
@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.start-plan-item {
  background: rgba(11, 20, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.95rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}
.start-plan-item:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(15, 27, 52, 0.96);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}
.start-plan-item.featured {
  border: 1.5px solid #10b981;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, rgba(11, 20, 38, 0.92) 100%);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.start-plan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.start-plan-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.start-plan-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
}
.start-popular-chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fef08a;
  background: rgba(234, 179, 8, 0.2);
  border: 1px solid rgba(234, 179, 8, 0.4);
  padding: 1px 6px;
  border-radius: 4px;
  width: fit-content;
}
.start-vip-chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #c4b5fd;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 1px 6px;
  border-radius: 4px;
  width: fit-content;
}
.start-plan-price {
  text-align: right;
  flex-shrink: 0;
}
.start-fee-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #34d399;
  line-height: 1.1;
}
.start-fee-label {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.start-plan-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 8px;
  border-radius: 8px;
}
.start-spec-box {
  display: flex;
  flex-direction: column;
}
.start-spec-lbl {
  font-size: 0.62rem;
  color: #94a3b8;
  font-weight: 600;
}
.start-spec-val {
  font-size: 0.76rem;
  color: #e2e8f0;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.start-spec-val.highlight-earn {
  color: #38bdf8;
  font-weight: 800;
}

.start-plan-action {
  margin-top: 2px;
}
.btn-start-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}
.start-plan-item.featured .btn-start-apply {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-color: #10b981;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}
.btn-start-apply:hover {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
}

/* ================= Video Embed Section ================= */
.project-video-box {
  background: #040914;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  margin: 1.5rem 0 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.project-video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= Section Header ================= */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.section-subtitle {
  font-size: 0.88rem;
  color: #94a3b8;
}

/* ================= Projects & Pricing Section ================= */
.projects-section {
  padding: 2.5rem 0;
}
.project-category-wrapper {
  margin-bottom: 3.5rem;
  background: rgba(11, 20, 38, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  position: relative;
}
.project-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.category-badge-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.category-priority-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}
.category-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}
.category-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 650px;
}

/* Plan Cards Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.plan-card {
  background: rgba(14, 26, 50, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  color: #f1f5f9;
}
.plan-card:hover {
  transform: translateY(-5px);
  border-color: #10b981;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.7), 0 0 25px rgba(16, 185, 129, 0.3);
}
.plan-card.featured {
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(16, 185, 129, 0.3);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.12) 0%, rgba(14, 26, 50, 0.95) 100%);
}
.plan-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), #06b6d4);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.plan-code-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: #34d399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 0.4rem;
  width: fit-content;
}
.plan-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.plan-price-wrap {
  margin: 0.5rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
}
.plan-period {
  font-size: 0.85rem;
  color: #94a3b8;
}
.plan-reduced-badge {
  font-size: 0.72rem;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-left: 0.5rem;
}

.plan-features-list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}
.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}
.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.feature-highlight {
  font-weight: 700;
  color: #ffffff;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

/* ================= Application Form Page (apply.php) ================= */
.form-page-section {
  padding: 3rem 0 5rem;
}
.form-card {
  background: rgba(11, 20, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.form-card-header {
  background: linear-gradient(135deg, #091222 0%, #15223e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 2rem;
}
.form-card-header h2 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}
.form-card-header p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.form-body {
  padding: 2.25rem;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.4rem;
}
.form-label span.req {
  color: var(--danger);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(6, 11, 22, 0.85);
  color: #ffffff;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  background: rgba(10, 18, 36, 0.95);
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px var(--primary-glow);
}
textarea.form-control {
  min-height: 85px;
  resize: vertical;
}

.plan-select-banner {
  background: rgba(16, 185, 129, 0.12);
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.selected-plan-details h4 {
  font-size: 1.15rem;
  color: #ffffff;
}
.selected-plan-details p {
  font-size: 0.85rem;
  color: #cbd5e1;
}
.selected-plan-price {
  text-align: right;
}
.selected-plan-price .fee-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}
.selected-plan-price .fee-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.checkbox-group {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(6, 11, 22, 0.6);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 3px;
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-item label {
  font-size: 0.88rem;
  color: #cbd5e1;
  cursor: pointer;
  line-height: 1.4;
}

/* ================= Payment Gateway Page (payment.php) ================= */
.payment-page-section {
  padding: 3rem 0 5rem;
}
.payment-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(11, 20, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.payment-card-header {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
  color: white;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.tracking-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.35rem;
}
.payment-amount-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  margin-top: 0.6rem;
  display: inline-block;
  min-width: 200px;
}
.payment-amount-box .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.payment-amount-box .amt {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Payment Method Tabs & Cards */
.payment-tabs-wrapper {
  padding: 1.25rem 1.5rem;
}
.payment-method-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.method-box {
  background: rgba(6, 11, 22, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  position: relative;
  transition: var(--transition);
  color: #f1f5f9;
}
.method-box:hover, .method-box.selected {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}
.method-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}
.method-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
}
.method-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.copy-row {
  background: rgba(11, 20, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  gap: 0.5rem;
}
.copy-info {
  display: flex;
  flex-direction: column;
}
.copy-label {
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}
.copy-value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.btn-copy {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  color: #ffffff;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-copy:hover {
  background: var(--primary);
  color: #060b17;
  border-color: var(--primary);
}
.btn-copy.copied {
  background: #10b981;
  color: #060b17;
  border-color: #10b981;
}

/* Proof Upload Form */
.proof-upload-box {
  background: rgba(6, 11, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  margin-top: 0.75rem;
}
.proof-box-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}
.proof-box-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

/* ================= Trust & Verification Section ================= */
.trust-section {
  padding: 3.5rem 0;
  background: rgba(4, 8, 16, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.reg-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.reg-card {
  background: rgba(11, 20, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.reg-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.reg-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ================= Footer ================= */
.main-footer {
  background: #040813;
  color: #cbd5e1;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 1rem 0;
  line-height: 1.7;
}
.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: #34d399;
  padding-left: 4px;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ================= Floating WhatsApp Button ================= */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: var(--transition);
}
.floating-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
.floating-wa-btn:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  z-index: -1;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ================= Recent Payout Records & Ticker Slider ================= */
.top-slider-box,
.bottom-slider-box {
  width: 100%;
  background: linear-gradient(90deg, #064e3b, #047857, #10b981);
  color: white;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.top-slider-box span,
.bottom-slider-box span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 22s linear infinite;
}
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.withdrawal-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px 8px;
  gap: 12px;
}
.withdraw-card {
  width: 255px;
  background: rgba(11, 20, 38, 0.95);
  color: #f1f5f9;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1.5px solid #10b981;
  transition: all 0.25s ease-in-out;
  position: relative;
  font-size: 0.78rem;
  line-height: 1.45;
}
.withdraw-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
  background: rgba(14, 26, 50, 0.98);
}
.withdraw-label {
  font-weight: 700;
  color: var(--primary);
}
.withdraw-status {
  font-weight: 800;
  color: #34d399;
  background: rgba(16, 185, 129, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  font-size: 0.75rem;
  animation: blink 1.4s infinite;
}
.main-highlight {
  font-weight: 700;
  color: #ffffff;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ================= Mobile App-Style Compact Media Queries ================= */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .trust-stats {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13.5px;
  }
  body {
    padding-bottom: 70px;
  }

  .container {
    padding: 0 0.75rem;
  }

  /* Compact Topbar */
  .topbar {
    padding: 4px 0;
    font-size: 0.7rem;
  }
  .topbar-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
  }
  .topbar-right a:not([href*="wa.me"]) {
    display: none;
  }
  .topbar-badge {
    padding: 1px 6px;
    font-size: 0.65rem;
  }

  /* Compact Native-App Header */
  .main-header {
    padding: 0.25rem 0;
  }
  .navbar {
    padding: 0.2rem 0;
  }
  .site-logo-img {
    height: 32px;
    max-width: 130px;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .brand-name {
    font-size: 0.98rem;
  }

  /* Hidden Mobile Navigation Drawer */
  .nav-menu {
    display: none !important;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    background: rgba(7, 14, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid rgba(16, 185, 129, 0.4);
    z-index: 999999;
    overflow-y: auto;
    gap: 1rem;
  }
  .nav-menu.open {
    display: flex !important;
  }
  .nav-link {
    font-size: 0.95rem;
    padding: 0.6rem 0;
    color: #f1f5f9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }
  .nav-link:hover {
    color: #10b981;
  }
  .btn-menu-toggle {
    display: block;
    font-size: 1.3rem;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
  }

  /* Compact Hero Section */
  .hero {
    padding: 1rem 0 0.75rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.65rem;
    margin-bottom: 0.6rem;
  }
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 0.45rem;
  }
  .hero-desc {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
  }
  .hero-ctas .btn {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }
  .hero-card {
    padding: 1rem;
    margin-top: 0.4rem;
  }
  .trust-stats {
    gap: 0.4rem;
    padding-top: 0.85rem;
  }
  .stat-number {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.68rem;
  }

  /* Compact Project Categories & Plan Cards */
  .projects-section {
    padding: 1.25rem 0;
  }
  .project-category-wrapper {
    padding: 1rem 0.75rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
  }
  .category-title {
    font-size: 1.15rem;
  }
  .category-desc {
    font-size: 0.8rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .section-subtitle {
    font-size: 0.8rem;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .plan-card {
    padding: 1rem 0.85rem;
    border-radius: var(--radius-md);
  }
  .plan-title {
    font-size: 1.02rem;
  }
  .plan-price {
    font-size: 1.55rem;
  }
  .plan-features-list {
    gap: 0.35rem;
    margin-bottom: 1rem;
  }
  .plan-feature-item {
    font-size: 0.8rem;
  }

  /* Compact Forms */
  .form-page-section {
    padding: 1.25rem 0 2.5rem;
  }
  .form-card {
    border-radius: var(--radius-md);
  }
  .form-card-header {
    padding: 1rem 0.85rem;
  }
  .form-card-header h2 {
    font-size: 1.2rem;
  }
  .form-body {
    padding: 1rem 0.85rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .form-control {
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
  }

  /* Compact Payment Screen */
  .payment-page-section {
    padding: 1.25rem 0 2.5rem;
  }
  .payment-card-header {
    padding: 1rem 0.85rem;
  }
  .payment-tabs-wrapper {
    padding: 0.85rem 0.65rem;
  }
  .payment-method-cards-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .method-box {
    padding: 0.75rem 0.85rem;
  }
  .proof-upload-box {
    padding: 0.85rem 0.75rem;
  }

  /* Compact WhatsApp Floating Button */
  .floating-wa-btn {
    bottom: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    z-index: 999;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ================= Personalized Applicant & WhatsApp Proof Styles ================= */
.applicant-salutation {
  font-family: 'Outfit', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: white;
  margin: 0.35rem 0;
  letter-spacing: -0.3px;
  line-height: 1.35;
}
.applicant-plan-sub {
  font-size: 0.86rem;
  color: #ecfdf5;
  font-weight: 500;
}
.wa-proof-alert-card {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #22c55e;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}
.wa-proof-icon-box {
  width: 38px;
  height: 38px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}
.wa-proof-icon-box svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.wa-proof-content h3 {
  color: #14532d;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.wa-proof-content p {
  color: #166534;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.wa-proof-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: white;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}
.wa-proof-btn:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  color: white;
}
.wa-proof-btn svg {
  width: 15px;
  height: 15px;
  fill: white;
}
@media (max-width: 640px) {
  .topbar-live-btn {
    display: none !important;
  }
  .wa-proof-alert-card {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem;
  }
  .applicant-salutation {
    font-size: 1.05rem;
  }
}

/* ================= Live Proof Logs & Social Proof Feed on Payment Page ================= */
.live-proof-logs-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.proof-logs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.45rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
}
.proof-logs-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.proof-log-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 0.7rem;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 6px;
  font-size: 0.78rem;
  transition: var(--transition);
}
.proof-log-item:hover {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.proof-log-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.proof-log-user {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
}
.proof-log-status {
  font-size: 0.68rem;
  font-weight: 800;
  color: #16a34a;
  background: #dcfce7;
  padding: 1px 6px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-log-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.25rem;
}
.proof-log-plan {
  color: var(--text-muted);
}
.proof-log-time {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
}

/* Floating Live Social Proof Toast */
.live-proof-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-left: 4px solid #10b981;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  z-index: 998;
  max-width: 320px;
  animation: slideToast 0.4s ease-out;
  transition: opacity 0.3s;
}
.live-toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .live-proof-toast {
    left: 10px;
    right: auto;
    bottom: 60px;
    max-width: 270px;
    padding: 6px 10px;
    font-size: 0.72rem;
  }
}
