/* ==========================================================================
   ArgenKOL Influencer Recruitment Platform - Modern Light Theme Styling
   ========================================================================== */

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

:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass-input: #f1f5f9;

  --primary-blue: #0284c7;
  --primary-blue-hover: #0369a1;
  --primary-indigo: #4f46e5;
  --primary-purple: #7c3aed;
  --accent-emerald: #10b981;
  --accent-emerald-dark: #047857;
  --accent-gold: #f59e0b;
  --accent-whatsapp: #25d366;
  --accent-telegram: #229ed9;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;

  --border-light: #e2e8f0;
  --border-hover: #0284c7;

  --gradient-main: linear-gradient(135deg, #0284c7 0%, #4f46e5 50%, #7c3aed 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 40px -10px rgba(2, 132, 199, 0.15);

  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  min-height: 100%;
  width: 100%;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden !important;
}

body {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
}

main {
  flex: 1;
}

/* Global Container (1:1 Homepage Max Width Match) */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .bg-glow-orb.orb-1 {
    width: 280px;
    height: 280px;
    left: -40px;
    top: -40px;
    filter: blur(80px);
  }
  .bg-glow-orb.orb-2 {
    width: 280px;
    height: 280px;
    right: -40px;
    filter: blur(80px);
  }
}

/* Background Subtle Glows */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
}

.bg-glow-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-blue);
  top: -100px;
  left: -100px;
}

.bg-glow-orb.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-emerald);
  top: 700px;
  right: -150px;
}

/* Utility Typography */
h1,
h2,
h3,
h4,
.font-heading {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
}

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

.text-emerald {
  color: var(--accent-emerald-dark);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.navbar.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition-fast);
  filter: drop-shadow(0 2px 8px rgba(2, 132, 199, 0.15));
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-select-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.lang-select-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  z-index: 101;
  min-width: 150px;
}

.lang-dropdown.open,
.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 12px;
  text-align: left;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.lang-option:hover,
.lang-option.active {
  background: #f0f9ff;
  color: var(--primary-blue);
}

/* CTA Buttons (Option A: 14px Modern Radius) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.35);
  transition: var(--transition-smooth);
}

.nav-actions .nav-apply-btn,
a.btn-primary.nav-apply-btn {
  height: 40px !important;
  padding: 0 20px !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2, 132, 199, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 24px;
  cursor: pointer;
}

/* Card Styling */
.card-light {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  position: relative;
}

.card-light:hover {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 40px 30px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.1);
}

.hero-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-visual-card:hover img {
  transform: scale(1.02);
}



/* Brand Logo Seamless Container (无边框无背景，融入主体) */
.brand-bar-section {
  padding: 30px 40px 50px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.brand-bar-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.brand-bar-title {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  justify-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 24px;
}

.brand-logo-img-item {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
  opacity: 0.88;
  transition: var(--transition-fast);
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

/* 视觉光学等重平衡：对字符较细/细长型的 Logo 进行适度放大 */
.brand-logo-img-item[src*="argluck"],
.brand-logo-img-item[src*="image9"],
.brand-logo-img-item.wide-logo {
  height: 64px;
  max-width: 100%;
}

.brand-logo-img-item:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 6px 16px rgba(2, 132, 199, 0.2));
}

/* 移动端媒体查询：1排2个 (2列 × 3行) */
@media (max-width: 768px) {
  .brand-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    max-width: 420px;
  }
}

/* Section Standard Layout */
.section {
  padding: 100px 40px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
}

/* Social Proof Success Stories Section */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
}

.proof-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.proof-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.proof-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
}

.proof-handle {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
}

.proof-badge-verified {
  background: #dcfce7;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.proof-income-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.proof-income-amount {
  font-size: 24px;
  font-weight: 900;
  color: #15803d;
  font-family: 'Outfit', sans-serif;
}

.proof-quote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-blue);
}

/* Trust Proof Badges Bar */
.trust-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 50px;
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.trust-item i {
  font-size: 22px;
  color: var(--primary-blue);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  padding: 36px 28px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Tiers Grid */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tier-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tier-card.popular {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.tier-card.popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.tier-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.tier-followers {
  font-size: 12px;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
}

.tier-salary {
  font-size: 18px;
  font-weight: 800;
  color: #d97706;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.tier-perks {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Calculator Section */
.calculator-card {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 48px;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-group label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.calc-group label span {
  color: var(--primary-blue);
  font-size: 16px;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-result-box {
  background: #f8fafc;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.calc-total-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.calc-total-amount {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  margin: 12px 0;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.calc-breakdown {
  margin: 16px 0;
  text-align: left;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.calc-breakdown-row strong {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 12px;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px 24px;
  position: relative;
}

.step-num {
  font-size: 36px;
  font-weight: 900;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact & Form Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition-fast);
}

/* Leaderboard Top 5 Creators & Task List Entrance */
.leaderboard-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.leaderboard-item:hover {
  background: #ffffff;
  border-color: var(--primary-blue);
  transform: translateX(4px);
}

.leaderboard-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}

.rank-1 { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.rank-2 { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.rank-3 { background: #ffedd5; color: #c2410c; border: 1px solid #fed7aa; }
.rank-4, .rank-5 { background: #f8fafc; color: var(--text-dim); border: 1px solid var(--border-light); }

.leaderboard-name {
  font-weight: 800;
  font-size: 13px;
  color: var(--text-main);
}

.leaderboard-niche {
  font-size: 11px;
  color: var(--text-dim);
}

.leaderboard-income {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #047857;
}

/* Future Task List Entrance Button (Background Image Edition V2) */
.task-list-entrance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(2, 132, 199, 0.85) 100%),
              url('../assets/task_entrance_bg_v2.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px -4px rgba(2, 132, 199, 0.38);
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
}

.task-list-entrance:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(2, 132, 199, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Task Entrance Right Action Badge */
.task-entrance-action-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px 16px;
  border-radius: 24px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.task-entrance-action-badge i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.task-list-entrance:hover .task-entrance-action-badge {
  background: #ffffff;
  color: #0284c7;
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.task-list-entrance:hover .task-entrance-action-badge i {
  transform: translateX(3px);
}


.star-progress-container {
  margin-bottom: 24px;
}

.star-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.star-progress-bar-bg {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.star-progress-bar-fill {
  height: 100%;
  width: 71%;
  background: var(--gradient-main);
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

.contact-item:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-icon.wa {
  background: #25d366;
  color: #fff;
}

.contact-icon.tg {
  background: #229ed9;
  color: #fff;
}

.contact-icon.cw {
  background: #7c3aed;
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.form-input,
.form-select {
  background: var(--bg-glass-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
  background: #ffffff;
}

.form-select option {
  background: #ffffff;
  color: var(--text-main);
}

/* Floating Online Customer Service Widget (Hidden on Landing Page, Preserved for Future Pages) */
.floating-cs-widget {
  display: none !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  position: relative;
}

.fab-btn:hover {
  transform: scale(1.12) translateY(-4px);
}

.fab-whatsapp {
  background: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-telegram {
  background: #229ed9;
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
}

.fab-chatwoot {
  background: var(--gradient-main);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: var(--transition-fast);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.modal-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Footer */
footer {
  width: 100%;
  padding: 40px 20px;
  border-top: 1px solid var(--border-light);
  background: #ffffff;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 120px;
    gap: 40px;
  }

  .benefits-grid,
  .process-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    flex-direction: column;
    gap: 16px;
    padding: 18px 16px;
  }

  .trust-item {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
    height: 64px;
  }

  .nav-logo-img {
    height: 30px;
    max-width: 44px;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-select-btn {
    padding: 5px 8px;
    font-size: 11px;
  }

  /* 移动端隐藏顶部重复的 Promocionar Ahora 按钮，防止导航栏挤压溢出 */
  .nav-apply-btn,
  a.btn-primary.nav-apply-btn,
  .nav-actions .nav-apply-btn {
    display: none !important;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 24px 30px;
    gap: 18px;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
  }

  .hero-section {
    padding: 100px 16px 30px;
    gap: 30px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  /* 移动端 CTA 按钮上下单列堆叠，通栏 100% 居中，防止左右截断 */
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    box-sizing: border-box;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .section {
    padding: 50px 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .benefits-grid,
  .tiers-grid,
  .process-grid,
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-light {
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}

/* Campaign Detail Page & Paginated Reader Styles */
.detail-hero-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 12px 35px -5px rgba(2, 132, 199, 0.08);
  margin-bottom: 50px;
}

.detail-sponsor-btn {
  text-decoration: none;
  padding: 0 24px;
  height: 42px;
  font-size: 14px;
  white-space: nowrap;
}

.tap-icon {
  display: inline-block;
  vertical-align: -4px;
  margin-left: 6px;
  animation: tapPulse 1.5s ease-in-out infinite;
}

@keyframes tapPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-3px) scale(1.18);
    opacity: 1;
  }
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #f8fafc;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin: 30px 0;
}

.detail-spec-item label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.detail-spec-item value {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
}

/* Interactive Paginated Reader Component */
.paginated-reader-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
  margin-bottom: 50px;
}

/* 1. Top Control Buttons Bar (始终在单行展示) */
.reader-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 0 0 20px 0;
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 24px;
  flex-wrap: nowrap !important;
  width: 100%;
}

.reader-control-btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-orange-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff7000, #ff9500);
  color: #ffffff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 2px 5px rgba(255, 112, 0, 0.3);
}

.reader-control-btn:hover:not(:disabled) {
  background: #fff7ed;
  border-color: #ff9500;
  color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 112, 0, 0.15);
}

.reader-control-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.reader-page-indicator {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #ea580c;
  background: #fff7ed;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #ffedd5;
}

/* 2. Step Text Wrapper */
.reader-text-wrapper {
  margin-bottom: 24px;
}

.reader-step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.4;
}

.reader-step-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* 3. Smartphone Screenshot Stage & Mockup Frame */
.reader-stage-container {
  position: relative;
  width: 100%;
  padding: 44px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.reader-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.reader-bg-blur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) brightness(0.9) opacity(0.35);
  transform: scale(1.1);
}

.phone-mockup-frame {
  position: relative;
  z-index: 2;
  width: 320px;
  max-width: 90%;
  background: #090d16;
  border-radius: 36px;
  border: 6px solid #0f172a;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.phone-mockup-frame:hover {
  transform: translateY(-4px);
}

.phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Settlement Grid */
.settlement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.settlement-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-smooth);
}

.settlement-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

@media (max-width: 992px) {
  .detail-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reader-slide-container {
    grid-template-columns: 1fr;
  }
  .settlement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .detail-sponsor-btn {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  .detail-specs-grid {
    grid-template-columns: 1fr;
  }
  .paginated-reader-card {
    padding: 20px 12px;
  }
  .reader-controls-bar {
    flex-wrap: nowrap !important;
    gap: 6px;
  }
  .reader-control-btn {
    padding: 6px 4px;
    font-size: 12px;
    gap: 4px;
  }
  .btn-orange-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .star-tag,
  .star-badge-header span,
  .star-meta-item-value,
  .nav-apply-btn {
    white-space: nowrap !important;
  }
}

/* ==========================================================================
   Campaigns Catalog & Workreap Style v2 Layout Styling
   ========================================================================== */

.campaigns-hero {
  padding-top: 130px;
  padding-bottom: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(2, 132, 199, 0.06) 0%, transparent 70%);
}

.campaign-filter-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.filter-row-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.search-input-wrapper {
  position: relative;
  flex: 1 1 300px;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-dim);
  font-size: 15px;
}

.search-input {
  width: 100%;
  height: 46px;
  padding: 0 40px 0 44px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #f8fafc;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.search-input:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.clear-search-btn {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

.filter-select-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}

.filter-select {
  height: 46px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%252364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: var(--transition-fast);
}

.filter-select:focus {
  border-color: var(--primary-blue);
  background-color: #ffffff;
}

.filter-row-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 12px;
}

.results-counter {
  font-size: 14px;
  color: var(--text-muted);
}

.filter-sub-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-reset-filters {
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-reset-filters:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

.view-mode-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.view-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.view-btn.active {
  background: #ffffff;
  color: var(--primary-blue);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Campaigns Container Grid vs Workreap List v2 */
.campaigns-grid-wrapper.view-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.campaigns-grid-wrapper.view-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.campaign-card-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.campaign-card-item:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 48px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card-body-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sponsor-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sponsor-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.sponsor-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.verified-icon {
  color: var(--primary-blue);
  font-size: 13px;
}

.sponsor-tag {
  font-size: 11px;
  color: var(--text-dim);
}

.status-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-badge.active { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.status-badge.threshold { background: #f0f9ff; color: #0284c7; border: 1px solid #bae6fd; }
.status-badge.full { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.status-badge.closed { background: #f1f5f9; color: #64748b; border: 1px solid #cbd5e1; }

.campaign-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 8px;
}

.campaign-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.payout-banner {
  background: #f8fafc;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: auto;
  margin-bottom: 12px;
}

.payout-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.payout-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-emerald-dark);
  margin-top: 2px;
}

.payout-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
}

.card-tags-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  margin-top: 0;
}

.card-tag-item {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
}

.card-tags-flex .card-tag-item:nth-child(n+3) {
  display: none !important;
}

.card-footer-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-card-detail {
  flex: 1;
  height: 42px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-card-apply {
  flex: 1;
  height: 42px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Workreap Style List View v2 Adjustments */
.view-list-v2 .campaign-card-item {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.view-list-v2 .card-header-flex {
  margin-bottom: 0;
  flex-direction: column;
  min-width: 180px;
}

.view-list-v2 .card-body-content {
  flex: 1;
}

.view-list-v2 .payout-banner {
  margin-bottom: 0;
  min-width: 200px;
}

.view-list-v2 .card-footer-flex {
  flex-direction: column;
  min-width: 140px;
}

/* No Results Card */
.no-results-card {
  background: #ffffff;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-lg);
  padding: 60px 24px;
  text-align: center;
}

.no-results-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-dim);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .campaigns-grid-wrapper.view-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .campaigns-grid-wrapper.view-grid {
    grid-template-columns: 1fr;
  }
  .view-list-v2 .campaign-card-item {
    flex-direction: column;
    align-items: stretch;
  }
  .view-list-v2 .card-header-flex {
    flex-direction: row;
    min-width: auto;
  }
  .view-list-v2 .card-footer-flex {
    flex-direction: row;
    min-width: auto;
  }
}

/* ==========================================================================
   Workreap Integrated Search Bar Component (1:1 Screenshot Replica)
   ========================================================================== */

.workreap-search-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 16px 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.workreap-search-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.wk-input-group {
  position: relative;
  flex: 1 1 280px;
  display: flex;
  align-items: center;
}

.wk-search-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 16px;
}

.wk-search-input {
  width: 100%;
  height: 48px;
  padding: 0 38px 0 44px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #f8fafc;
  font-size: 15px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.wk-search-input:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.wk-clear-btn {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

.wk-divider {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
}

/* Category Custom Dropdown Popup */
.wk-category-dropdown {
  position: relative;
}

.wk-category-btn {
  height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.wk-category-btn:hover,
.wk-category-dropdown.open .wk-category-btn {
  background: #ffffff;
  border-color: var(--border-light);
  color: var(--text-main);
}

.wk-cat-icon {
  color: var(--primary-blue);
  font-size: 15px;
}

.wk-arrow-icon {
  font-size: 12px;
  color: var(--text-dim);
  transition: var(--transition-fast);
}

.wk-category-dropdown.open .wk-arrow-icon {
  transform: rotate(180deg);
}

.wk-category-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 240px;
  max-height: 280px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  z-index: 99;
  display: none;
  animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.wk-category-dropdown.open .wk-category-menu {
  display: block;
}

/* Workreap Custom Scrollbar Styling (Orange/Accent Slider) */
.wk-category-menu::-webkit-scrollbar {
  width: 6px;
}

.wk-category-menu::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.wk-category-menu::-webkit-scrollbar-thumb {
  background: #ff5722;
  border-radius: 4px;
}

.wk-category-item,
.wk-sort-item {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.wk-category-item:hover,
.wk-category-item.active,
.wk-sort-item:hover,
.wk-sort-item.active {
  background: #f0f9ff;
  color: var(--primary-blue);
  font-weight: 700;
}

/* Search Now Button */
.wk-search-btn {
  height: 48px;
  padding: 0 28px;
  border-radius: 14px;
  border: none;
  background: var(--gradient-main);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.wk-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.5);
}

.wk-search-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.3);
}

/* Sort By Box (In Top Search Bar) */
.wk-sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.wk-sort-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

.wk-sort-select {
  height: 48px;
  padding: 0 36px 0 16px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%252364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.wk-sort-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

/* Advanced Panel Drawer */
.wk-advanced-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  animation: slideDown 0.3s ease-out;
}

.wk-advanced-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wk-panel-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  display: block;
}

.wk-pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wk-pill-btn {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: #f8fafc;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.wk-pill-btn:hover,
.wk-pill-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}

.wk-range-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wk-range-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-emerald-dark);
}

.wk-range-slider {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  margin-top: 8px;
  accent-color: var(--primary-blue);
}

.wk-panel-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}

/* Results Sub-Header Bar (1:1 Replica) */
.results-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.results-count-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  margin: 0;
}

.results-sort-view-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sort-by-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-by-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
}

.sort-by-select {
  height: 40px;
  padding: 0 32px 0 14px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%252364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  appearance: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

@media (max-width: 992px) {
  .wk-divider {
    display: none;
  }
  .workreap-search-bar-row {
    gap: 10px;
  }
  .wk-category-dropdown {
    width: 100%;
  }
  .wk-category-btn {
    width: 100%;
    justify-content: space-between;
  }
  .wk-search-btn {
    width: 100%;
  }
  .wk-advanced-btn {
    width: 100%;
    justify-content: center;
  }
}