:root {
  --foreground: 215 25% 27%;
  --muted-foreground: 215 16% 47%;
  --primary-h: 214 84% 56%;
  --success-h: 142 76% 36%;
  --background: #fff;
  --primary: #2563eb;
  --success: #10b981;
  --warning: #f59e0b;
  --muted: #f3f6f8;
  --border: #e9eef3;
  --shadow-card: 0 12px 30px rgba(15, 20, 40, 0.06);
  --shadow-hover: 0 18px 36px rgba(15, 20, 40, 0.09);
  --radius: 1rem;
  --btn-radius: 50px;
  --transition: all .28s cubic-bezier(.2, .9, .25, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: hsl(var(--foreground));
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-primary {
  background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

.text-success {
  background: linear-gradient(90deg, #34d399 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn:focus {
  outline: 3px solid rgba(37, 99, 235, 0.16);
  outline-offset: 3px;
}

.btn-primary {
  background-color: #3182edf7;
  color: #fff;
  border: none;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.btn-light.hover-effect {
  outline: 1px solid #3182ed40;
  outline-offset: 1px;
}

.btn-light.hover-effect:hover {
  color: hsl(var(--foreground));
  background-color: hsl(var(--primary-h) / 0.05);
  border-color: hsl(var(--primary-h) / 0.4);
  transform: scale(1.05);
}

.btn-outline {
  background: #fff;
  color: hsl(var(--foreground));
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(12, 18, 30, 0.04);
}

.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--muted-foreground));
}

.btn-full {
  width: 100%;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(10, 33, 64, 0.06);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}

.logo-img {
  width: 150px;
}

.nav-link {
  padding: 6px 15px;
  border-bottom: 2px solid transparent;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease;
}

.nav-link.active,
.nav-link:hover {
  color: hsl(var(--primary-h));
  border-bottom-color: hsl(var(--primary-h));
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  background-color: #e2f1ff;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.hero {
  position: relative;
  padding: 7.5rem 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #E2EEFC 0%, #F9FCFF 35%, #F4FBF8 70%, #E8F5ED 100%);
}

.hero-content {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.trust-badge {
  display: inline-block;
  padding: 2px 5px;
  border: 2px solid #ecedee;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-title {
  margin: 0.6rem 0 0.4rem;
  color: hsl(var(--foreground));
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.hero-description {
  margin-top: 1rem;
  max-width: 480px;
  color: #65758b;
  font-size: 26px;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.6rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.hero-feature i {
  color: #0a9c6e;
}

.hero-image {
  position: relative;
  max-width: 680px;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 5px solid #EFF7FD;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
}

.floating-card {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  min-width: 130px;
  border: 1px solid rgb(59 130 246 / 50%);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 18, 30, 0.08);
}

.earnings-card-live {
  bottom: -15px;
  left: -36px;
  width: 240px;
  padding: 1rem;
}

.earnings-card-live .icon-circle {
  width: 54px;
  height: 54px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 1.2rem;
}

.earnings-card-live .label {
  margin-bottom: -10px;
  color: #6B7280;
  font-size: 16px;
}

.earnings-card-live .amount {
  margin-bottom: -10px;
  color: #2866ec;
  font-size: 1.6rem;
  font-weight: 700;
}

.earnings-card-live .change {
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 600;
}

.online-badge {
  top: 0px;
  right: -18px;
  padding: 5px 15px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.12);
}

.online-badge .pulsing-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

.blob1 {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -120px;
  background: rgba(37, 99, 235, 0.10);
  filter: blur(140px);
}

.blob2 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: -100px;
  background: rgba(16, 185, 129, 0.08);
  filter: blur(120px);
}

.trusted-section {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.small-badge {
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.06);
  border: 1px solid rgba(13, 110, 253, 0.04);
  color: #0d6efd;
  font-size: .78rem;
  font-weight: 600;
   background: -webkit-linear-gradient(to right, #499BFF , #29ca72);
   background: -o-linear-gradient(to right, #499BFF, #29ca72);
   background: -moz-linear-gradient(to right, #499BFF, #29ca72);
   background: linear-gradient(to right, #499BFF , #29ca72); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card {
  min-height: 170px;
  padding: 1.6rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(13, 110, 253, 0.03);
  box-shadow: 0 18px 34px rgba(10, 33, 64, 0.06);
  transition: transform .28s ease, box-shadow .28s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(10, 33, 64, 0.08);
}

.stat-card .icon-circle {
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 18px;
}

.bg-primary-soft {
  background: linear-gradient(135deg, #2e86ff, #5aa8ff);
}

.bg-success-soft {
  background: linear-gradient(135deg, #23c66b, #2fcf79);
}

.bg-warning-soft {
  background: linear-gradient(135deg, #ffbf36, #f4f961);
}

.stat-value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-primary-strong {
  color: #4b9cff;
}

.text-success-strong {
  color: #2bcc74;
}

.text-warning-strong {
  color: #fdca3e;
}

.text-danger-strong {
  color: #ffa64d;
}

.trend {
  color: #16a34a;
  font-weight: 700;
}

.trust-features i {
  color: #138a3e;
  font-size: 1.05rem;
}

.trust-features span {
  color: #0f5132;
  font-weight: 600;
}

.research-journey-section {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.journey-title {
  color: #223;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
}

.journey-card {
  position: relative;
  min-height: 380px;
  overflow: visible;
  padding: 1.6rem;
  border-radius: 12px;
  background: #eef2ff;
  border: 1px solid rgba(10, 33, 64, 0.04);
  box-shadow: 0 18px 34px rgba(10, 33, 64, 0.05);
  transition: transform .28s ease, box-shadow .28s ease;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 64px rgba(10, 33, 64, 0.08);
}

.card-soft-rose {
  background: #f5f3ff;
}

.card-soft-pink {
  background: #fdf2f8;
}

.card-soft-green {
  background: #f0fdf4;
}

.icon-wrapper {
  position: relative;
  display: inline-block;
}

.card-pulse-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: #0d6efd;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.journey-card .icon-circle {
  width: 78px;
  height: 78px;
  margin-top: 24px;
  color: #fff;
  font-size: 28px;
}

.bg-bleu {
  background: linear-gradient(135deg, #2e86ff, #98c8ff);
}

.bg-purple {
  background: linear-gradient(135deg, #8a4bff, #cfa9f4);
}

.bg-pink {
  background: linear-gradient(135deg, #fa7c98, #ce003a);
}

.bg-green {
  background: linear-gradient(135deg, #149258, #00d08a);
}

.journey-card .card-title {
  margin: 6px 0;
  color: #213041;
  font-size: 1.05rem;
}

.journey-card .text-muted {
  color: #6b7280;
}

.journey-card .stats {
  margin-top: 10px;
}

.journey-card .stats .small {
  color: #000;
  font-size: 0.85rem;
}

.journey-card .stats .text-success {
  color: #16a34a !important;
}

.get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(33, 37, 41, 0.06);
  border-radius: 8px;
  background: #fff;
  color: #213041;
  font-weight: 600;
}

.get-started:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 33, 64, 0.06);
}

.why-choose-section {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.why-choose-section .small-badge {
  padding: 8px 14px;
  font-size: .9rem;
}

.why-title {
  color: #1f2b3a;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
}

.why-title .brand {
  color: #2e86ff;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 260px;
  padding: 1.6rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(10, 33, 64, 0.04);
  box-shadow: 0 18px 40px rgba(10, 33, 64, 0.04);
  transition: transform .28s ease, box-shadow .28s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 80px rgba(10, 33, 64, 0.07);
}

.feature-icon-wrap {
  margin-top: 6px;
  margin-bottom: 6px;
}

.feature-icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.06), rgba(0, 212, 255, 0.04));
  color: #2e86ff;
  font-size: 28px;
  box-shadow: 0 18px 36px rgba(46, 134, 255, 0.06);
}

.feature-card:nth-child(2) .feature-icon-square {
  background: linear-gradient(135deg, rgba(138, 75, 255, 0.06), rgba(191, 170, 255, 0.02));
  color: #6f42c1;
  box-shadow: 0 18px 36px rgba(111, 66, 193, 0.06);
}

.feature-card:nth-child(3) .feature-icon-square {
  background: linear-gradient(135deg, rgba(255, 85, 122, 0.06), rgba(255, 125, 170, 0.02));
  color: #e8597a;
  box-shadow: 0 18px 36px rgba(232, 89, 122, 0.06);
}

.feature-card:nth-child(4) .feature-icon-square {
  background: linear-gradient(135deg, rgba(18, 181, 106, 0.06), rgba(0, 208, 138, 0.02));
  color: #0fb56a;
  box-shadow: 0 18px 36px rgba(15, 181, 106, 0.06);
}

.feature-title {
  margin: 10px 0 .5rem;
  color: #213041;
  font-size: 1.05rem;
}

.feature-card .text-muted {
  margin-top: 8px;
  color: #6b7280;
  line-height: 1.45;
}

.trust-bar {
  padding: 1.6rem;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(237, 246, 255, 0.9) 0%, rgba(240, 255, 247, 0.9) 100%);
  border: 1px solid rgba(10, 33, 64, 0.04);
  box-shadow: 0 18px 32px rgba(10, 33, 64, 0.03);
}

.trust-item {
  max-width: 880px;
}

.trust-icon-wrap {
  min-width: 48px;
  min-height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.06), rgba(0, 212, 255, 0.03));
  color: #1e66d6;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(30, 102, 214, 0.06);
}

.trust-icon-wrap i {
  vertical-align: middle;
}

.trust-icon-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.03));
  color: #16a34a;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.06);
}

.trust-icon-blue {
  background: linear-gradient(135deg, rgba(46, 134, 255, 0.06), rgba(46, 134, 255, 0.03));
  color: #2e86ff;
  box-shadow: 0 8px 20px rgba(46, 134, 255, 0.06);
}

.trust-title {
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.trust-sub {
  font-size: .95rem;
}

.rewards-section {
  padding-bottom: 64px;
  background: linear-gradient(180deg, #fff, #fbfdff 70%);
}

.rewards-section .small-badge {
  padding: 6px 12px;
  border: 1px solid rgba(13, 110, 253, 0.04);
  font-weight: 700;
}

.reward-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 255, 250, 0.98));
  border: 1px solid rgba(10, 33, 64, 0.03);
  box-shadow: 0 28px 60px rgba(23, 50, 78, 0.04);
  transition: transform .28s ease, box-shadow .28s ease;
}

.reward-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(23, 50, 78, 0.06);
}

.reward-icon-square {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.06), rgba(0, 212, 255, 0.03));
  color: #2e86ff;
  font-size: 20px;
  box-shadow: 0 12px 30px rgba(30, 102, 214, 0.05);
}

.reward-title {
  color: #213041;
  font-size: 1rem;
}

.reward-card .small {
  color: #7b8794;
}

.popular-pill {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.22));
  color: #0f5132;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.12);
}

.value-range {
  color: #16a34a;
  font-size: 1.05rem;
}

.redeemed-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: middle;
  box-shadow: 0 6px 18px rgba(10, 33, 64, 0.06);
}

.dot.bg-blue {
  background: #2e86ff;
}

.dot.bg-yellow {
  background: #ffbf36;
}

.dot.bg-green {
  background: #16a34a;
}

.redeem-link {
  color: #1f6bed;
  font-weight: 600;
  text-decoration: none;
}

.redeem-link:hover {
  text-decoration: underline;
}

.cta-bar {
  padding: 1.6rem;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(237, 246, 255, 0.9), rgba(240, 255, 247, 0.9));
  border: 1px solid rgba(10, 33, 64, 0.04);
  box-shadow: 0 20px 40px rgba(10, 33, 64, 0.04);
}

.cta-bar .btn {
  min-width: 160px;
}

.cta-hero {
  padding: 64px 0;
  color: #fff;
  text-align: center;
  background-color: #2e86ff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
}

.cta-sub {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  opacity: .95;
}

.cta-actions {
  margin-top: 28px;
}

.btn-cta-primary {
  padding: 12px 26px;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(14, 30, 60, 0.12);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn-cta-secondary {
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #2e86ff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(46, 134, 255, 0.08);
  transition: transform .16s ease, box-shadow .16s ease;
}

.btn-cta-primary:hover,
.btn-cta-primary:focus {
  background: rgba(0, 0, 0, 0.30);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(14, 30, 60, 0.18);
}

.btn-cta-secondary:hover,
.btn-cta-secondary:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(46, 134, 255, 0.12);
}

.btn-cta-primary:focus,
.btn-cta-secondary:focus {
  outline: 3px solid rgba(255, 255, 255, 0.12);
  outline-offset: 2px;
}

.site-footer {
    color: #3f4a57;
    background: #fafcfe;
    border-top: 1px solid #e5e8eb;
}
.footer-logo-img {
  width: 56px;
  height: 56px;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(10, 33, 64, 0.03);
  object-fit: contain;
}

.brand-name {
  margin: 0;
  color: #1f2b3a;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-sub {
  color: #7b8794;
  font-weight: 600;
}

.footer-desc {
  margin: .35rem 0 0;
  color: #6b7280;
}

.footer-social {
  margin-top: .5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: .5rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 6px;
  background: transparent;
  color: #6b7280;
  font-size: .9rem;
  text-decoration: none;
  transition: all .18s ease;
}

.social-link:hover {
  color: #2e86ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 134, 255, 0.06);
}

.social-link:focus {
  outline: 3px solid rgba(46, 134, 255, 0.12);
  outline-offset: 2px;
}

.footer-heading {
  margin-bottom: .75rem;
  color: #213041;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links li {
  margin-bottom: .55rem;
}

.footer-links a {
  color: #58626a;
  font-size: .95rem;
  text-decoration: none;
  transition: color .15s ease;
}

.footer-links a:hover {
  color: #2e86ff;
}

.footer-links a:focus {
  outline: 3px solid rgba(46, 134, 255, 0.12);
  outline-offset: 2px;
}

.footer-divider {
  height: 1px;
  margin: 1.25rem 0;
  border: 1px solid;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02));
}

.copyright,
.trusted {
  color: #7b8794;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1380px;
  }

  .hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 992px) {
  .nav-desktop,
  .header-actions {
    display: flex;
  }

  .mobile-menu,
  .mobile-overlay,
  .mobile-menu-btn {
    display: none !important;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hero-text {
    padding-right: 1rem;
  }

  .hero-image {
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .nav-desktop,
  .header-actions {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .4rem .6rem;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 1.15rem;
    cursor: pointer;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(8, 25, 40, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    width: 320px;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: -22px 40px 60px rgba(8, 25, 40, 0.12);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.2, .9, .3, 1);
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.125rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .mobile-menu-header h2 {
    margin: 0;
  }

  .mobile-menu .close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: transparent;
    color: #222;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu .close-btn:focus {
    outline: 3px solid rgba(13, 110, 253, 0.16);
    outline-offset: 2px;
  }

  .mobile-menu-content {
    flex: 1 1 auto;
    padding: 1rem 1.25rem;
    overflow-y: auto;
  }

  .mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-nav-link+.mobile-nav-link {
    margin-top: .125rem;
  }

  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding: 0 1.25rem 1.25rem;
  }

  .hero {
    padding: 4.5rem 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    padding: 0;
  }

  .hero-image {
    margin-top: 1.75rem;
  }

  .earnings-card-live {
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
  }

  .online-badge {
    top: -10px;
    right: 18px;
  }

  .journey-card {
    min-height: auto;
  }

  .journey-title {
    font-size: 1.9rem;
  }

  .research-journey-section {
    padding: 36px 0 48px;
  }

  .why-choose-section {
    padding: 42px 0 48px;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .feature-card {
    min-height: auto;
    padding-bottom: 1.25rem;
  }

  .reward-card {
    min-height: auto;
  }

  .cta-bar {
    flex-direction: column;
    gap: .75rem;
    align-items: stretch;
  }
}

@media (min-width: 768px) {
  .trust-bar {
    padding: 1.6rem 2.25rem;
  }

  .trust-title {
    font-size: 1.25rem;
  }

  .trust-sub {
    font-size: 1rem;
    color: #5b6a74;
  }
}

@media (max-width: 767.98px) {
  .stat-card {
    min-height: 160px;
    padding: 1rem;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .trusted-section {
    padding: 36px 0 40px;
  }

  .trust-bar {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .trust-item {
    width: 100%;
  }

  .trust-copy {
    text-align: left !important;
  }

  .cta-hero {
    padding: 42px 0;
  }

  .cta-title {
    font-size: 1.7rem;
  }

  .cta-sub {
    padding: 0 18px;
    font-size: 0.98rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 220px;
    margin: 0 auto;
  }

  .site-footer .row.g-4 {
    text-align: center;
  }

  .footer-heading {
    font-size: 1.15rem;
  }

  .footer-logo-img {
    display: block;
    margin: 0 auto;
  }

  .footer-brand {
    justify-content: center;
  }

  .trusted {
    margin-top: .5rem;
    text-align: center !important;
  }
}

.plain-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 1050;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}

.plain-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.plain-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
}

.plain-modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 920px;
  margin: 40px auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.3);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  max-height: calc(100vh - 80px);
}

.plain-modal[aria-hidden="false"] .plain-modal-panel {
  transform: translateY(0);
}

.plain-modal-inner {
  padding: 28px 28px 36px;
  overflow-y: auto;
}

.plain-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  z-index: 10;
}

.member-box {
  border: 2px solid #3182ed33;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 18px;
  text-align: center;
}

.plain-modal-inner h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}

.mcustomp {
  color: #556070;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}

.mcustomh {
  text-align: center;
  padding: 20px 10px 0px;
}

.member-box .btn.primary {
  display: inline-block;
  margin-top: 8px;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.join-card {
  border: 1px solid #eef2f7;
  padding: 14px;
  border-radius: 8px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.join-card h5 {
  margin-bottom: 4px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: -5px;
}

.join-card .muted {
  color: #6b7785;
  margin-bottom: 8px;
  flex-grow: 1;
}

.join-card ul {
  padding-left: 0;
  list-style: none;
  margin: 6px 0 12px;
  color: #374151;
}

.join-card svg{}

.join-card ul li {
  margin-bottom: 4px;
}

.join-card span{
	
}

.plain-modal .btn {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 3px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: normal;
  width: 100%;
  margin-top: auto;
  line-height: 26px;
  padding-bottom: 7px;
}

.plain-modal .btn.primary {
  background: #3182ed;
  color: #fff;
  border: 1px solid #3379d6;
}
.plain-modal .member-box .btn.primary {
    width: 350px;
}

.text-purple { color: #8b5cf6; }
.text-olive { color: #84cc16; }

@media (max-width: 740px) {
  .plain-modal-panel {
    margin: 16px;
    max-height: calc(100vh - 32px);
  }
  .join-grid {
    grid-template-columns: 1fr;
  }
  .plain-modal .member-box .btn.primary {
    width: 248px;
}
.plain-modal-panel {
    
    width: 90%;
    max-width: 920px;

}
}

.member-box h3{
	font-size: 1.5rem; font-weight: 600;
}

.iconText{
  padding: 5px;
  border-radius: 5px;
  font-weight: normal;
  margin-right: 10px;
}

.lable-btn{background-color:#65758b;font-size: 13px; border-radius: 15px; padding: 2px 10px; color:#fff; margin-top:5px;}

.bg-purple-500 {
  opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}

.bg-green-500 {
  opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}

.bg-red-500 {
  opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.joinNowbtn{border-radius: 7px;
  padding: 5px 15px;
  height: 36px;
  font-weight: normal; margin-top: 7px;}

.hero-content::before {
  content: "";
  width: 25px;
  height: 25px;
  background: #9CC3F6;
  border-radius: 50%;
  position: relative;
  display: block;
  animation: bounce1 1.5s infinite;
}

@keyframes bounce1 {
  0%, 100% {
    top: 0;
    animation-timing-function: ease-in;
  }

  50% {
    top: 20px;
    animation-timing-function: ease-out;
  }
}

.hero::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #16A34A;
  border-radius: 50%;
  position: relative;
  display: block;
  animation: bounce2 1.5s infinite;
  left: 90%;
  top:15%;
}

@keyframes bounce2 {
  0%, 100% {
    top: 0;
    animation-timing-function: ease-in;
  }

  50% {
    top: 20px;
    animation-timing-function: ease-out;
  }
}

.hero-image::before {
  content: "";
  width: 15px;
  height: 15px;
  background: yellow;
  border-radius: 50%;
  position: relative;
  display: block;
  animation: bounce3 1.5s infinite;
  left: 85%;
  top:15%;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

@keyframes bounce3 {
  0%, 100% {
    top: 0;
    animation-timing-function: ease-in;
  }

  50% {
    top: 20px;
    animation-timing-function: ease-out;
  }
}

.hero-image img:hover   {
  transform: scale(1.008);
	transition: all .3s ease-in-out;
}

.floating-card:hover{transform: scale(1.008);
	transition: all .3s ease-in-out;
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
	background-color: #E1E7F3;
}

.page-hero {
  position: relative;
  padding: 9rem 2rem;
  background: radial-gradient(ellipse at center, hsl(214, 100%, 97%) 0%, hsl(214, 90%, 95%) 100%);
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 1; }
.page-title {
  color: hsl(var(--foreground));
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 1rem;
}
.page-description {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: hsl(var(--muted-foreground));
  font-size:22px;
  line-height: 1.6;
}
.basic-badge {
  padding: .35rem .75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  font-size: .78rem;
  font-weight: 600;
}
.deco-dot { position: absolute; border-radius: 50%; animation: float 6s ease-in-out infinite; z-index: 0; }
.deco-dot.dot-1 { width: 25px; height: 25px; background-color: #a9c7ec; top: 20%; left: 12%; }
.deco-dot.dot-2 { width: 15px; height: 15px; background-color: #a7f3d0; bottom: 25%; left: 30%; animation-delay: 2s; }
.deco-dot.dot-3 { width: 20px; height: 20px; background-color: #a9c7ec; top: 30%; right: 15%; animation-delay: 1.5s; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

.process-badge {
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(37,99,235,0.03);
  border: 1px solid rgba(37,99,235,0.15);
  color: #2563eb;
  font-size: .78rem;
  font-weight: 600;
  display:inline-block;
}

.steps-title {
  font-size: 48px;
  font-weight: 700;
  color: #2b3a46;
  margin: 14px 0 6px;
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.steps-sub {
  font-size: 16px;
  color: #6b7280;
  max-width: 820px;
  margin: 0 auto 8px;
}

.steps-section {
  padding: 6rem 2rem;
}

.steps-grid {
    margin-top: 75px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start;
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 30px 30px;
  position: relative;
  min-height: 380px;
  text-align: center;
  border: 1px solid rgba(15,23,42,0.03);
  box-shadow: 0 18px 40px rgba(51, 71, 91, 0.05);
  transition: transform .32s cubic-bezier(.2,.9,.2,1),
              box-shadow .32s ease,
              border-color .32s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
  will-change: transform, box-shadow;
}
.step-card > * { position: relative; z-index: 2; }

.step-card:hover,
.step-card:focus {
  transform: translateY(-14px);
  border-color: rgba(37,99,235,0.12);
  box-shadow:
    0 48px 120px rgba(32,67,103,0.10),
    0 6px 30px rgba(37,99,235,0.04);
  outline: none;
  z-index: 10;
}
.step-card:hover::before,
.step-card:focus::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(700px 160px at 50% 8%, rgba(37,99,235,0.03), transparent 30%);
  z-index: 1;
}

.step-card.active {
  border: 2px solid rgba(37,99,235,0.14);
  transform: translateY(-8px);
  box-shadow:
    0 56px 140px rgba(37,99,235,0.10),
    0 10px 36px rgba(37,99,235,0.03);
  z-index: 3;
}
.step-card.active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(1000px 260px at 50% 8%, rgba(37,99,235,0.035), transparent 32%);
  z-index: 1;
}

.icon-box {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: linear-gradient(180deg, rgba(13,110,253,0.06), rgba(37,99,235,0.03));
  box-shadow: 0 18px 40px rgba(37,99,235,0.04);
  color: #2563eb;
  font-size: 28px;
  transition: transform .28s cubic-bezier(.2,.9,.2,1),
              box-shadow .28s ease;
}
.step-card:hover .icon-box,
.step-card:focus .icon-box,
.step-card.active .icon-box {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 48px rgba(37,99,235,0.06),
              0 6px 18px rgba(32,67,103,0.04);
}

.step-num {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,#2e86ff,#489bff);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(46,134,255,0.22);
  z-index: 6;
  transition: transform .22s cubic-bezier(.25,.9,.25,1),
              box-shadow .22s ease;
}
.step-card:hover .step-num,
.step-card:focus .step-num {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(46,134,255,0.26),
              0 6px 20px rgba(32,67,103,0.06);
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  color: #1f2d3a;
  margin: 6px 0 12px;
}
.step-text {
  font-size: 15px;
  color: #6d7984;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.step-features {
  list-style: none;
  margin: auto 0 0 0;
  padding: 16px 20px;
  background: #f5f9ff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.step-features li {
  font-size: 14px;
  font-weight: 500;
  color: #064e3b;
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.step-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-title { font-size: 42px; }
  .step-card { min-height: 360px; padding: 30px; }
}
@media (max-width: 767px) {
  .steps-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
  }
  .step-card { flex: 0 0 86%; min-height: 380px; }
  .step-num { right: 10px; top: 10px; width: 44px; height: 44px; font-size: 13px; }
  .step-card:hover,
  .step-card:focus { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(32,67,103,0.08); }
  .icon-box { transform: none; }
  .step-num { transform: none; }
}

.research-section {
  background: linear-gradient(135deg, rgba(248,252,255,0.98) 0%, rgba(255,255,255,0.99) 100%);
  padding: 5.5rem 1.5rem 4rem;
}

.research-title {
    font-size: 40px !important;
    font-weight: 700;
    color: #233042;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.research-title .accent { color: #0fb6b3; }
.research-sub {
    color: #6b7280;
    font-size: 20px;
    max-width: 870px;
    margin: 0 auto 35px;
    line-height: 1.7;
}
.category-pill-wrap { display:flex; justify-content:center; margin-bottom:18px; }
.category-pill {
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 999px;
    background: #D5E4FC;
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: #344256;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 8px 26px rgba(37, 99, 235, 0.03);
}
.category-panel {
  max-width: 1180px;
  margin: 28px auto;
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
  align-items: center;
  border: 2px solid #D8E6FD;
  box-shadow: 0 18px 40px rgba(32,67,103,0.06);
}

.panel-left { padding-left: 10px; }
.panel-heading {
  font-size: 18px;
  font-weight: 700;
  color: #1f2d3a;
  margin-bottom: 8px;
}
.panel-desc {
  color: #6d7984;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
}
.panel-meta {
  display:flex;
  gap: 28px;
  align-items:flex-start;
  color:#5a6b76;
  font-size: 14px;
}
.meta-col strong { display:block; color:#273044; font-weight:700; margin-bottom:6px; }
.meta-list { color:#586875; line-height:1.6; }

.panel-right {
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}

.price-pill {
  width: 100%;
  max-width: 320px;
  padding: 20px 22px;
  border-radius: 12px;
  text-align:center;
  color:#fff;
  box-shadow: 0 12px 36px rgba(46,134,255,0.12);
  background: linear-gradient(90deg,#2e86ff,#3fb0ff);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.price-pill.gradient-purple {
  background: linear-gradient(90deg,#8b5cf6,#3b82f6);
  box-shadow: 0 12px 36px rgba(59,130,246,0.10);
}
.price-large {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.price-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  margin-top: 6px;
  color: rgba(255,255,255,0.95);
}

.price-term {
  font-weight: 700;
  letter-spacing: .2px;
}

.price-meta {
  font-weight: 600;
  font-size: 11px;
  opacity: 0.95;
}
.btn-join {
  width: 100%;
  max-width: 320px;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight:700;
  color:#fff;
  background: linear-gradient(90deg,#2e86ff,#3fb0ff);
  box-shadow: 0 8px 26px rgba(46,134,255,0.12);
}
.btn-join.gradient-purple-outline {
  background: linear-gradient(90deg,#8b5cf6,#3b82f6);
  box-shadow: 0 8px 26px rgba(59,130,246,0.10);
}

.panel-left {
    max-width: calc(100% - 200px);
    text-align: left;
}

.category-panel + .category-panel { margin-top: 46px; }

@media (max-width: 991px) {
  .category-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .panel-right { align-items: center; width:100%; }
  .price-pill, .btn-join { max-width: 320px; width: 100%; }
  .panel-meta { flex-direction: column; gap:8px; }
}

@media (min-width: 1400px) {
  .research-title { font-size:44px; }
  .category-panel { max-width: 1280px; }
}

.healthcare-section {
  background: linear-gradient(135deg, rgba(226,238,252,0.9), rgba(248,253,251,0.95));
  padding: 4.25rem 1rem 4.25rem;
}

.category-pill--health {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 22px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(16,185,129,0.12), rgba(255,255,255,0.65));
  border: 1px solid rgba(16,185,129,0.15);
  color: #0fa874;
  font-weight:700;
  box-shadow: 0 10px 28px rgba(16,185,129,0.04);
}

.healthcare-grid {
  max-width: 1180px;
  margin: 1.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.health-panel {
  background: var(--background, #fff);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(16,185,129,0.12);
  box-shadow: 0 18px 40px rgba(10,33,64,0.04);
  display:flex;
  flex-direction: column;
  min-height: 360px;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease;
}
.health-panel:hover { transform: translateY(-6px); box-shadow: 0 36px 64px rgba(10,33,64,0.06); }

.panel-top { display:flex; justify-content:center; margin-bottom: 6px; }
.icon-circle.health-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(16,185,129,0.18), rgba(16,185,129,0.10));
  box-shadow: 0 10px 26px rgba(16,185,129,0.06);
}

.panel-meta { display:flex; gap: 24px; justify-content:flex-start; color:#5b6b72; font-size:14px; margin-bottom:18px; }
.panel-meta .meta-col { flex:1; }
.panel-meta .meta-col strong { display:block; margin-bottom:6px; color:#213041; font-weight:700; }

.panel-price-wrap { margin-top:auto; display:flex; flex-direction:column; gap:12px; align-items:stretch; }

.price-pill--green {
  padding:18px 20px;
  border-radius:12px;
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
  color: #ffffff;
  text-align:center;
  font-weight:800;
  box-shadow: 0 12px 34px rgba(16,185,129,0.12);
}
.price-pill--green .sub { font-size:12px; font-weight:600; opacity:0.93; margin-top:6px; color: rgba(255,255,255,0.95); }

.btn-join--green {
  display:inline-block;
  border-radius:10px;
  padding:12px 16px;
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
  color:#fff;
  font-weight:700;
  border: none;
  box-shadow: 0 8px 26px rgba(16,185,129,0.12);
  cursor:pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.btn-join--green:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(16,185,129,0.18); }

@media (max-width: 991px) {
  .healthcare-grid { grid-template-columns: 1fr; }
  .panel-meta { flex-direction: column; gap:8px; }
  .panel-desc { max-width: 100%; }
}

.category-pill--health {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 999px;
    background: #16a24933;
    border: 1px solid rgba(16, 185, 129, 0.14);
    color: #344256;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.035);
    margin-top: -18px;
    z-index: 4;
    font-size: 18px;
    position: relative;
}

.healthcare-grid {
  max-width: 1220px;
  margin: 1.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.health-panel {
  background: var(--background, #fff);
  border-radius: 12px;
  padding: 36px 36px 28px;
  border: 1px solid rgba(16,185,129,0.08);
  box-shadow: 0 28px 60px rgba(23,50,78,0.03);
  display:flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease;
}

.health-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 56px 120px rgba(23,50,78,0.06);
}

.panel-top { display:flex; justify-content:center; margin-bottom: 8px; }
.icon-circle.health-icon {
  width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(16,185,129,0.16), rgba(16,185,129,0.08));
  box-shadow: 0 12px 36px rgba(16,185,129,0.06);
  font-size: 22px;
}

.panel-heading {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: #213041;
    margin: 6px 0 8px;
}
.panel-desc {
    text-align: left;
    color: #6d7984;
    font-size: 15px;
    margin-bottom: 18px;
    max-width: 78%;
    margin-left: 0px;
    margin-right: auto;
    line-height: 1.6;
}
.mt-50 {
	margin-top:50px !important;
}
.panel-meta {
  display:flex;
  gap: 24px;
  justify-content:flex-start;
  color:#5b6b72;
  font-size:14px;
  margin-bottom:22px;
}
.panel-meta .meta-col { flex:1; }
.panel-meta .meta-col strong { display:block; margin-bottom:8px; color:#65758b; font-weight:700; }

.panel-price-wrap { margin-top:auto; display:flex; flex-direction:column; gap:12px; align-items:stretch; }

.price-pill--green {
  width: 100%;
  border-radius: 12px;
  padding: 22px 20px;
  background: #16a249;
  color: #fff;
  text-align:center;
  font-weight:800;
  box-shadow: 0 18px 40px rgba(16,185,129,0.14), inset 0 -6px 20px rgba(0,0,0,0.03);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.price-pill--green .price-large { font-size:22px; line-height:1; }
.price-pill--green .sub { font-size:13px; font-weight:600; margin-top:6px; opacity:0.95; }

.btn-join--green {
  display:block;
  width:100%;
  border-radius:10px;
  padding:14px 18px;
  background: #16a249;
  color:#fff;
  font-weight:800;
  border:none;
  box-shadow: 0 10px 30px rgba(16,185,129,0.12);
  cursor:pointer;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn-join--green:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(16,185,129,0.18);
  filter: brightness(1.02);
}

.panel-price-wrap > * + * { margin-top: 12px; }

@media (max-width: 991px) {
  .healthcare-grid { grid-template-columns: 1fr; gap: 18px; }
  .panel-desc { max-width: 100%; padding: 0 8px; }
  .icon-circle.health-icon { width: 54px; height: 54px; }
  .price-pill--green { padding: 18px; }
  .btn-join--green { padding: 12px; border-radius: 10px; }
}
.gradient-heading {
  background-image: linear-gradient(to right, #499BFF, #29ca72);

  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

.panel-meta {
  width: 100%;
  display: block;
  margin-bottom: 22px;
}

.panel-meta .meta-row-top {
  display: block;
  margin-bottom: 12px;
  text-align: left;
}
.panel-meta .meta-row-top .meta-col,
.panel-meta .meta-row-top .topics {
  width: 100%;
  text-align: left;
}
.panel-meta .meta-row-top .meta-col strong {
  display:block;
  margin-bottom:6px;
  font-weight:700;
  color:#273044;
}

.panel-meta .meta-row-bottom {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: left;
}

.panel-meta .meta-row-bottom .meta-item {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: calc(50% - 14px);
}

.panel-meta .meta-row-bottom .meta-item strong {
  display:block;
  margin-bottom:6px;
  font-weight:700;
  color:#273044;
}
.panel-meta .meta-row-bottom .meta-item div {
  margin:0;
  color:#586875;
  line-height:1.6;
}

.panel-meta .topics div {
  margin:0;
  color:#586875;
  line-height:1.7;
}

@media (max-width: 991px) {
  .panel-meta .meta-row-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .panel-meta .meta-row-bottom .meta-item {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.price-small {
  display: block;
  text-align: center;
  margin-top: 6px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
}

.price-small .per-month {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.price-small .per-survey {
  display: block;
  font-size: 12px;
  opacity: 0.95;
  font-weight: 600;
}

.category-panel, .panel-left, .health-panel {
}
.panel-meta, .panel-meta * {
  text-align: left !important;
}

.text-gradient {
  background: linear-gradient(to right, #499BFF, #29ca72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 700;
}

@media (max-width: 991px) {
  .panel-right {
    align-items: center;
  }
}

.join-categories-section {
  padding: 4.5rem 1rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(16,185,129,0.02));
}

.join-panel {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 36px 34px;
  text-align: center;
  border: 1px solid rgba(37,99,235,0.06);
  box-shadow: 0 28px 60px rgba(32,67,103,0.06);
}

.join-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  justify-content: center;
}
.join-heading h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2d3a;
  display: inline-block;
}
.check-ico {
  display: inline-block;
  vertical-align: middle;
}

.join-copy {
  max-width: 760px;
  margin: 12px auto 18px;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

.join-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 12px 0 20px;
  flex-wrap: wrap;
}

.badge-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15,23,42,0.04);
}

.badge-blue {
  background: linear-gradient(90deg,#499BFF,#29CA72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid rgba(73,155,255,0.12);
  background-color: rgba(73,155,255,0.06);
  padding: 6px 12px;
}
.badge-green {
  background: linear-gradient(90deg,#10b981,#059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid rgba(16,185,129,0.10);
  background-color: rgba(16,185,129,0.06);
  padding: 6px 12px;
}
.badge-outline {
  background: rgba(37,99,235,0.03);
  color: #174a90;
  border: 1px solid rgba(37,99,235,0.08);
  padding: 6px 12px;
}

.join-cta {
  margin-top: 8px;
}

.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  background: linear-gradient(90deg,#2e86ff,#10b981);
  box-shadow: 0 12px 34px rgba(46,134,255,0.12), 0 6px 20px rgba(16,185,129,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(46,134,255,0.14), 0 10px 36px rgba(16,185,129,0.08);
  outline: none;
}

@media (min-width: 1400px) {
  .join-panel { padding: 48px 44px; border-radius: 16px; }
}

@media (max-width: 767px) {
  .join-panel { padding: 22px; margin: 0 12px; }
  .join-copy { font-size: 0.95rem; }
  .badge-pill { font-size: 0.82rem; padding: 6px 10px; }
  .btn-cta { width: 100%; padding: 12px; border-radius: 12px; }
}

.why-choose-section {
  padding: 64px 1rem;
  background: linear-gradient(180deg, rgba(240,248,255,0.6), rgba(248,255,250,0.6));
}

.why-panel {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 28px 60px rgba(10, 33, 64, 0.05);
}

.why-heading h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  color: #1f2d3a;
  letter-spacing: -0.4px;
}
.why-sub {
  margin: 0 auto 28px;
  max-width: 760px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

.features-grid {
  display: flex;
  gap: 36px;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 6px;
}

.feature-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 12px 30px rgba(46,134,255,0.06);
  font-size: 25px;
}


.health-panel .icon-circle {
  background: #CBE8D8;
  box-shadow: 0 12px 30px rgba(46,134,255,0.06);  
}


.icon-blue svg { display: block; }

.feature-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1f2d3a;
  text-align: center;
}
.feature-desc {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
  text-align: center;
}

.feature-card:hover .icon-circle,
.feature-card:focus-within .icon-circle {
  transform: translateY(-4px);
  transition: transform 220ms ease;
  box-shadow: 0 20px 44px rgba(46,134,255,0.08);
}

@media (max-width: 991px) {
  .why-panel { padding: 36px 22px; }
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-desc { max-width: 100%; padding: 0 8px; }
}

@media (min-width: 1400px) {
  .why-panel { padding: 64px 56px; }
  .why-heading h2 { font-size: 36px; }
}

.faq-section {
  padding: 56px 1rem 80px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(246,252,255,0.95));
}

.faq-header { margin-bottom: 28px; }
.faq-title {
  font-size: 34px;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin: 0 0 12px;
  letter-spacing: -0.3px;
  text-align: center;
}

.faq-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.faq-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border, #e9eef3);
  box-shadow: 0 12px 30px rgba(15, 20, 40, 0.04);
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease, border-color .28s ease;
  outline: none;
}

.faq-card:focus,
.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 20, 40, 0.08);
  border-color: rgba(46,134,255,0.08);
  z-index: 3;
}

.faq-question {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: hsl(var(--foreground));
  line-height: 1.15;
}

.faq-answer {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 14.75px;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card { padding: 20px; }
  .faq-title { font-size: 28px; }
  .faq-question { font-size: 20px; }
}

.faq-grid > .faq-card:nth-child(1),
.faq-grid > .faq-card:nth-child(2) {
  margin-top: 6px;
}
/* ===== Rewards Hero Section Only ===== */
.rewards-hero {
  position: relative;
  padding: 5rem 2rem;
  background: radial-gradient(
    ellipse at center,
    hsl(214, 100%, 97%) 0%,
    hsl(214, 90%, 95%) 100%
  );
  overflow: hidden;
}

.rewards-hero .hero-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #0d6efd;
  font-size: 0.78rem;
  font-weight: 600;
  background-image: linear-gradient(to right, #499BFF, #29ca72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rewards-hero .page-description {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: hsl(var(--muted-foreground));
  font-size: 22px;
  line-height: 1.6;
}

.rewards-hero .reward-features {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.rewards-hero .feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.06);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-weight: 700;
  font-size: 0.92rem;
  color: #213041;
}

.rewards-hero .feature-ico {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.04);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}

.rewards-hero .feature-ico svg {
  width: 18px;
  height: 18px;
  display: block;
}

.rewards-hero .text-gradient {
  background: linear-gradient(to right, #499BFF, #29ca72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.1;
}

.rewards-hero .feature-pill:hover,
.rewards-hero .feature-pill:focus {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  outline: none;
}

.rewards-hero .feature-pill:focus {
  outline: 3px solid rgba(73, 155, 255, 0.12);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .rewards-hero .reward-features {
    gap: 8px;
    padding: 0 8px;
  }
  .rewards-hero .feature-pill {
    padding: 8px 10px;
    font-size: 0.88rem;
  }
  .rewards-hero .feature-ico {
    width: 28px;
    height: 28px;
  }
  .rewards-hero .feature-ico svg {
    width: 16px;
    height: 16px;
  }
}

.rewards-hero .page-title {
  line-height: 1.25;
}

.rewards-hero .gradient-heading {
  display: inline-block;
  padding-bottom: 4px;
  transform: translateZ(0);
}

.rewards-hero .page-hero-content,
.rewards-hero .page-title,
.rewards-hero .gradient-heading {
  overflow: visible;
}

.rewards-exact {
  padding: 56px 1rem;
  background: transparent;
}

.rewards-exact .container {
  max-width: 1220px;
  margin: 0 auto;
}

.rewards-exact__header {
  text-align: center;
  margin-bottom: 34px;
}

.rewards-exact__icon {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 6px;
  color: #2e86ff;
}

.rewards-exact__title {
  font-size: 28px;
  font-weight: 800;
  margin: 4px 0;
  color: #213041;
}

.rewards-exact__sub {
  color: #6b7280;
  margin-top: 8px;
  font-size: 15px;
}

.rewards-exact__grid {
  display: grid;
  grid-template-columns: 360px 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.rewards-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  min-height: 460px;
  box-shadow: 0 18px 40px rgba(23, 50, 78, 0.03);
  border: 1px solid #e5e8eb;
  display: flex;
  align-items: stretch;
}

.rewards-card__inner {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.rewards-card--featured {
  min-height: 480px;
  padding: 28px 24px;
}

.rewards-card__logo-wrap {
  position: relative;
  display: inline-block;
  margin: 6px auto 12px;
}

.rewards-card__logo {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(23, 50, 78, 0.04);
}

.rewards-card__logo img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.rewards-card__pill {
  position: absolute;
  right: -12px;
  top: -10px;
  background: linear-gradient(90deg, #2e86ff, #60a8ff);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(46, 134, 255, 0.12);
}

.rewards-card__title {
  font-size: 18px;
  font-weight: 800;
  color: #213041;
  margin: 8px 0 6px;
}

.rewards-card__desc {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 18px;
}

.rewards-card__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.val {
  background: linear-gradient(180deg, #fbfdff, #f7f9fb);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(30, 40, 60, 0.03);
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.val__amount {
  font-weight: 800;
  font-size: 16px;
  color: #213041;
}

.val__pts {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

.rewards-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 6px;
}

.rewards-card__meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.08);
}

.rewards-card__meta .meta-text {
  color: #64748b;
  font-weight: 600;
  font-size: 13px;
}

.rewards-card--empty {
  min-height: 480px;
  border: 1px dashed rgba(30, 40, 60, 0.04);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rewards-card__empty {
  text-align: center;
  color: #9aa6b2;
}

.empty-ico {
  font-size: 28px;
  margin-bottom: 8px;
}

.empty-title {
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 6px;
}

.empty-sub {
  font-size: 13px;
  color: #9aa6b2;
}

@media (max-width: 1100px) {
  .rewards-exact__grid {
    grid-template-columns: 1fr 1fr;
  }
  .rewards-card--featured {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .rewards-exact__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .rewards-card,
  .rewards-card--empty {
    min-height: auto;
    padding: 18px;
  }
  .rewards-card--featured {
    padding: 20px;
  }
}

.rewards-section {
  padding: 80px 0;
}

.rewards-header {
  max-width: 750px;
  margin-bottom: 48px;
}

.rewards-title {
  font-size: 36px;
  font-weight: 800;
  color: #212529;
  margin-bottom: 12px;
}

.rewards-subtitle {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
}

.rewards-note {
  font-size: 14px;
  color: #8a95a1;
  margin-top: 8px;
}

.rewards-category {
  margin-bottom: 34px;
}

.category-title {
  font-size: 28px;
  font-weight: 800;
  color: #213041;
  margin: 4px 0 8px;
}

.category-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-top: 8px;
}

.reward-card {
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(23, 50, 78, 0.03);
  border: 1px solid #e5e8eb;
}

.featured-card {
  background-color: #fff;
  padding: 28px 24px;
}

.card-inner-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex-grow: 1;
}

.popular-pill {
  position: absolute;
  top: -10px;
  right: -12px;
  background: linear-gradient(90deg, #2e86ff, #60a8ff);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(46, 134, 255, 0.12);
  z-index: 1;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  margin: 6px auto 12px;
}

.card-logo {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(23, 50, 78, 0.04);
  padding: 18px;
  box-sizing: border-box;
}

.card-logo img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.card-title {
  font-size: 18px;
  font-weight: 800;
  color: #213041;
  margin: 8px 0 6px;
}

.card-description {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.value-item {
  background: linear-gradient(180deg, #fbfdff, #f7f9fb);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(30, 40, 60, 0.03);
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.value-item .amount {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #213041;
  line-height: 1.2;
}

.value-item .points {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 6px;
}

.card-footer-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.delivery-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #16a34a;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.08);
}

.placeholder-card {
  background-color: #fff;
  border: 1px dashed rgba(30, 40, 60, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.placeholder-content {
  text-align: center;
  color: #9aa6b2;
}

.placeholder-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.placeholder-title {
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 6px;
}

.placeholder-subtitle {
  font-size: 13px;
  color: #9aa6b2;
}

@media (max-width: 1199px) {
  .rewards-section .row > .col-lg-4:nth-child(3) {
    display: none !important;
  }
  .rewards-section .row {
    justify-content: center !important;
  }
}

@media (max-width: 991px) {
  .rewards-title {
    font-size: 32px;
  }
  .rewards-section .row > .col-lg-4:nth-child(3) {
    display: block !important;
  }
  .rewards-section .row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .rewards-title {
    font-size: 28px;
  }
  .rewards-section .row > .col-lg-4:nth-child(3) {
    display: none !important;
  }
  .rewards-card,
  .placeholder-card {
    min-height: auto;
    padding: 18px;
  }
  .featured-card {
    padding: 20px;
  }
  .rewards-section .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .rewards-section .col-lg-4 {
    width: 100%;
    max-width: 360px;
  }
}

.contact-hero {
    position: relative;
    padding: 5rem 2rem;
    background: radial-gradient(ellipse at center, hsl(214, 100%, 97%) 0%, hsl(214, 90%, 95%) 100%);
    overflow: hidden;
}
.contact-hero .page-hero-content, .contact-hero .page-title, .contact-hero .gradient-heading {
    overflow: visible;
}
.contact-hero .gradient-heading {
    display: block;
    padding-bottom: 4px;
    transform: translateZ(0);
}
.contact-hero .hero-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #0d6efd;
    font-size: 0.78rem;
    font-weight: 600;
    background-image: linear-gradient(to right, #499BFF, #29ca72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section {
    padding: 6rem 0;
}

.card {
    border: 1px solid #e9ecef;
    border-radius: 1rem; /* More rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Lifts the card on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.icon-wrapper {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    background-color: #e7f1ff; /* Light blue background for the icon */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 1.75rem;
    color: #0d6efd; /* Bootstrap primary blue */
}

.card-title {
    margin-bottom: 0.5rem;
}

.contact-info {
    font-size: 1rem;
    color: #495057;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    min-height: 48px;
    display: flex;
	border-radius: 10px;
    align-items: center;
    justify-content: center;
    background-color: #FAFBFC;
}

.btn-outline-primary {
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-width: 2px;
    border: 2px solid #e5e8eb;
    color: #000;
}

/* Add some padding to the section */
.send-message-section {
    padding: 6rem 0;
    background-color: #FBFBFC;
}
/* Form Styling */
.form-control {
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
}

.form-label {
    font-weight: 500;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}


/* Right Info Panel Styling */
.info-block {
    padding: 1.5rem;
    border-radius: 10px; /* As requested */
    margin-bottom: 1.5rem; /* Space between blocks */
}

/* Remove margin from the last block */
.info-block:last-child {
    margin-bottom: 0;
}

/* Custom background colors */
.bg-light-blue {
    background-color: #f4f7fc;
}
.bg-light-yellow {
    background-color: #fff9eb;
}
.bg-light-green {
    background-color: #f2fbf6;
}


/* General styles for headings and icons inside the blocks */
.info-block hr {
    margin: 2rem 0;
}

.info-block h5, .info-block h6 {
    color: #212529; /* Darker text for titles */
}

.info-block i {
    font-size: 1.2rem;
    color: #0d6efd;
}

.faq-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.faq-section .lead a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.faq-section .lead a:hover {
    text-decoration: underline;
}

.faq-item h3 {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 1rem;
}

/* This class is for the items with the background */
.faq-card {
    background-color: #f8f9fa; /* A light grey, similar to the image */
    padding: 2rem;
    border-radius: 0.75rem; /* 12px */
}

.gold-member-badge {
    background-color: #fff0c7;
    color: #b38600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Stat Cards */
.stat-card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}
.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 2.25rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Icon Colors */
.icon-primary { background-color: #e7f1ff; color: #0d6efd; }
.icon-info { background-color: #e3f8fa; color: #0dcaf0; }
.icon-success { background-color: #e8f9ee; color: #198754; }
.icon-warning { background-color: #fff9e6; color: #ffc107; }


/* Main Content Cards */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 1.25rem;
}

.survey-item hr {
    margin: 1.25rem 0;
}

.survey-item .badge {
    padding: 0.4rem 0.8rem;
    font-weight: 500;
}
.stat-card-alt {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}
.stat-card-alt:hover {
    transform: translateY(-5px);
}

.stat-card-alt h2 {
    font-size: 2.25rem;
    line-height: 1; /* Adjust line height for better alignment */
}

.stat-icon-alt {
    font-size: 3rem; /* Larger icon */
}

/* Optional: If you still have the old stat-card styles, you can remove them */
.stat-card, .stat-icon {
    /* You can delete the old styles if they are no longer needed */
}

.cat-icon{
	background-color:#EAF2FD; 
	border-radius: 50%;
	padding: 10px;
	color:#363636;
}

.category-subtitle {
	font-size: 1.125rem;
}

.reward-card:hover{
	background: linear-gradient(0deg, white, #F5F9FE 90%) ;
}

.reward-card:hover {
  transform: scale(1.05);
  transition: all .3s ease-in-out;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.reward-card:hover .card-logo{
  transform: scale(1.09);
  transition: all .3s ease-in-out;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.logo-wrapper{
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
	border-radius: 15px;
	border: 3px solid #EFF7FD;
}

.card-footer-meta {
  font-size: 0.875rem;
}

@media (min-width: 1200px) {
  main .container {
    max-width: 1200px;
  }
}

.card-description {
  padding-top: 30px;
}

.section-padding{padding:60px 0;}

.greyBg{background-color: #F8F9FA;}

.howicons{text-align: center; }

.howicons svg{text-align: center; background-color: #f3f8fe; width: 70px; height: 70px; color: #3182ed;
padding: 7px; border-radius: 15px;}

.howicons:hover .howicons svg{background-color: #E4EFFD;}

.howitworks{text-align: center;}

.howitworks .card-title{padding:30px 0;}

.howitworks p{color:#818893;line-height: 1.625; font-size: 16px;}

svg.text-green-600{color:#70c12d;}

.cunterSection{width: 70%; background-color: #EAF2FD; padding:30px; margin: 0 auto; margin-top:50px;border: 2px solid #c8dcf8; border-radius: 8px;}

.singlecount{text-align: center;}

.singlecount .icon{font-size: 2.25rem; line-height: 2.5rem; color: #5196F0; font-weight: 700;}

.singlecount p{font-size: 0.875rem; line-height: 2rem;}

.w-80{width:80%; margin: 0 auto;}

.accordion{
	border:none;
}

.accordion-item {
  margin-bottom: 20px;
  border: none;
  border:2px solid #fbfbfb;
}

.accordion-item:hover {
  border:2px solid #CBF5F7;
}

.accordion-button:not(.collapsed) {
  background: none !important;
  border:none; font-weight: bold; 
}

.accordion-button:focus{
	box-shadow: none;
}

.cta-white{background-color: #EDF4FD;}

.cta-white h1{
	color: #344256;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1;
}

.cta-white h1 span{color:#5799F0;}

.cta-white p{color:#65758B;}

.cta-white .btn-cta-primary {
	background: #3785EE ;}

.cta-white .btn-cta-secondary:hover {color:#344256;}

.r-15{border-radius: 15px;}

.research-journey-section .journey-card .icon-circle{
	width:64px; height: 64px; margin-top: 65px;
}

.research-journey-section .journey-card .icon-wrapper i{
	color:#fff;
}