/* ================= SPA marketing pages (preise, job-vermitteln) ================= */
/* Uses landing-core tokens; content patterns aligned with empfehler sections */

.l3m-main {
  padding-bottom: 48px;
}

.l3m-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .l3m-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Hero */
.l3m-hero {
  padding: 32px 0 48px;
  text-align: center;
}

.l3m-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--p-sand);
  background: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  box-shadow: var(--shadow-card);
}

.l3m-hero__title {
  margin: 24px auto 0;
  max-width: 820px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--fg-strong);
  text-wrap: balance;
}

.l3m-hero__sub {
  margin: 20px auto 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.5;
  color: #585451;
}

.l3m-hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Section */
.l3m-section {
  padding: 8px 0 40px;
}

.l3m-section__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 0 0 8px;
}

/* Pricing grid */
.l3m-pricing-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .l3m-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.l3m-pricing-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .l3m-pricing-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .l3m-pricing-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.l3m-billing-toggle {
  display: inline-flex;
  gap: 2px;
  margin: 0 0 32px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}

.l3m-billing-toggle__row {
  display: flex;
  justify-content: center;
}

.l3m-billing-toggle__btn {
  position: relative;
  border: 0;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.l3m-billing-toggle__btn:hover {
  color: var(--fg);
}

.l3m-billing-toggle__btn.is-active {
  background: #ffffff;
  color: var(--fg-strong);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(16,16,19,0.08);
}

.l3m-billing-toggle__save {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1d8050;
  background: rgba(29, 128, 80, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
}

.l3m-billing-toggle__btn.is-active .l3m-billing-toggle__save {
  background: rgba(29, 128, 80, 0.14);
}

.l3m-pillars {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .l3m-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.l3m-pillar {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--p-sand);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-card);
}

.l3m-pillar__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-strong);
}

.l3m-pillar__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #585451;
}

.l3m-hero__meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
}

.l3m-faq {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.l3m-faq__item {
  border-radius: 20px;
  border: 1px solid var(--p-sand);
  background: rgba(255, 255, 255, 0.9);
  padding: 0 20px;
}

.l3m-faq__item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  color: var(--fg-strong);
  list-style: none;
}

.l3m-faq__item summary::-webkit-details-marker {
  display: none;
}

.l3m-faq__item p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #585451;
}

.l3m-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--p-sand);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.l3m-plan:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.l3m-plan--highlight {
  background: rgba(255, 248, 231, 0.92);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 1024px) {
  .l3m-plan--highlight {
    margin-top: -12px;
    margin-bottom: -12px;
  }
}

.l3m-plan__ribbon {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--brand-grad);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-strong);
  box-shadow: var(--shadow-glow);
}

.l3m-plan__badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--p-cream);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
}

.l3m-plan__name {
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg-strong);
}

.l3m-plan__price {
  margin: 20px 0 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  line-height: 1;
}

.l3m-plan__per {
  margin-left: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
}

.l3m-plan__fee {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.l3m-plan__features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.l3m-plan__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #585451;
}

.l3m-plan__features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: center/12px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d8050' stroke-width='2.4'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.l3m-plan__cta {
  margin-top: 24px;
}

.l3m-plan__note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--fg-muted);
}

/* Trust strip */
.l3m-trust {
  margin-top: 40px;
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid var(--p-sand);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .l3m-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .l3m-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.l3m-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #585451;
}

.l3m-trust__item::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d8050' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

/* Marketplace */
.l3m-hero--left {
  text-align: left;
}

.l3m-hero--left .l3m-hero__title,
.l3m-hero--left .l3m-hero__sub {
  margin-left: 0;
  margin-right: 0;
}

.l3m-search {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid var(--p-sand);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
  .l3m-search {
    grid-template-columns: 1fr 1fr auto;
    align-items: stretch;
  }
}

.l3m-search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 20px;
  background: var(--bg-warm-a);
  min-height: 56px;
}

.l3m-search__field input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--fg-strong);
  outline: none;
}

.l3m-search__field input::placeholder {
  color: var(--fg-muted);
}

.l3m-search__submit {
  min-height: 56px;
  justify-content: center;
}

.l3m-bullets {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

@media (min-width: 640px) {
  .l3m-bullets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.l3m-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #585451;
}

.l3m-bullets li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d8050' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.l3m-layout {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .l3m-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }
}

.l3m-panel {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line-glass);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.l3m-panel__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-strong);
}

.l3m-field {
  margin-bottom: 14px;
}

.l3m-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Custom filter selects (see js/l3m-select.js) */
.l3m-select {
  position: relative;
  width: 100%;
}

.l3m-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l3m-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--p-sand);
  background: var(--bg-warm-a, #faf8f5);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-strong);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.l3m-select__trigger:hover {
  border-color: rgba(16, 16, 19, 0.12);
}

.l3m-select.is-open .l3m-select__trigger {
  border-color: rgba(16, 16, 19, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 186, 113, 0.25);
}

.l3m-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.l3m-select__chevron {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.2s var(--ease);
}

.l3m-select.is-open .l3m-select__chevron {
  transform: rotate(180deg);
}

.l3m-select__menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 16px;
  border: 1px solid var(--p-sand);
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 16, 19, 0.1);
  max-height: 240px;
  overflow-y: auto;
}

.l3m-select__option {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--fg-strong);
  cursor: pointer;
}

.l3m-select__option:hover {
  background: var(--bg-warm-a, #faf8f5);
}

.l3m-select__option.is-selected {
  background: rgba(255, 186, 113, 0.2);
  font-weight: 600;
}

/* Job cards — split layout: main content (left) + commission sidecar (right) */
.l3m-jobs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l3m-jobs-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.l3m-load-more {
  min-width: 220px;
}

.l3m-job {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(16, 16, 19, 0.05);
  box-shadow: 0 6px 20px rgba(16, 16, 19, 0.04);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.l3m-job:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 16, 19, 0.07);
}

@media (min-width: 768px) {
  .l3m-job {
    flex-direction: row;
    align-items: stretch;
  }
}

/* ----- main column ----- */
.l3m-job__main {
  flex: 1 1 auto;
  min-width: 0;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.l3m-job__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.l3m-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
}

.l3m-tag--category { background: #fff0d9; color: #8a4f0b; border-color: #f7e0b8; }
.l3m-tag--workmodel { background: #e7f3ea; color: #2e6a3c; border-color: #cfe5d4; }
.l3m-tag--employment { background: #e6effb; color: #2a4d80; border-color: #d4e2f5; }
.l3m-tag--seniority { background: #f1e7f7; color: #5a2e7a; border-color: #e1d1ee; }

.l3m-job__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
}

.l3m-job__company-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--fg-muted);
  font-weight: 500;
  min-width: 0;
}

.l3m-job__company,
.l3m-job__meta-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.l3m-job__company svg,
.l3m-job__meta-loc svg {
  flex-shrink: 0;
  color: var(--fg-muted);
}

.l3m-job__company-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 240px;
}

.l3m-job__description {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----- right sidecar with provision + CTAs ----- */
.l3m-job__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  border-top: 1px solid rgba(245, 230, 211, 0.6);
  background: linear-gradient(180deg, #fffaf2 0%, #fff5e8 100%);
}

@media (min-width: 768px) {
  .l3m-job__aside {
    border-top: none;
    border-left: 1px solid rgba(245, 230, 211, 0.7);
    width: 220px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #fffaf2 0%, #fff4e6 100%);
  }
}

.l3m-job__provision-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.l3m-job__provision-label svg {
  color: #f59e0b;
}

.l3m-job__provision {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #d97706;
  line-height: 1.1;
}

.l3m-job__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.l3m-job__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
  font-size: 13.5px;
  border-radius: 999px;
  font-weight: 600;
}

.l3m-job__cta a.btn--ghost,
.l3m-job__cta .btn--ghost {
  background: #ffffff;
  border: 1px solid rgba(16, 16, 19, 0.14);
  color: var(--fg-strong);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.l3m-job__cta a.btn--ghost:hover,
.l3m-job__cta .btn--ghost:hover {
  border-color: rgba(16, 16, 19, 0.32);
  background: #fafafa;
}

.l3m-job__cta a.btn--primary,
.l3m-job__cta .btn--primary {
  background: linear-gradient(135deg, #ffb260 0%, #ff8a3d 100%) !important;
  border-color: transparent;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 138, 61, 0.25);
}

.l3m-job__cta a.btn--primary::before,
.l3m-job__cta .btn--primary::before {
  content: none;
}

.l3m-job__cta a.btn--primary:hover,
.l3m-job__cta .btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 16px rgba(255, 138, 61, 0.32);
  transform: none;
}

.l3m-job__cta a.btn--primary:hover span,
.l3m-job__cta .btn--primary:hover span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none;
}

.l3m-empty {
  padding: 32px;
  text-align: center;
  border-radius: 22px;
  border: 1px dashed var(--p-sand);
  color: var(--fg-muted);
  font-size: 15px;
}

.l3m-filter-btn {
  display: none;
}

@media (max-width: 1023px) {
  .l3m-filter-btn {
    display: inline-flex;
  }
  .l3m-panel--sidebar {
    display: none;
  }
  .l3m-panel--sidebar.is-open {
    display: block;
  }
}

/* Public marketplace referral modal */
#l3m-referral-modal-root {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.l3m-referral-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.l3m-referral-dialog {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}

.l3m-referral-card {
  pointer-events: auto;
  width: min(760px, calc(100vw - 2rem));
  border-radius: 32px;
  border: 1px solid #dedede;
  background: #fff8f1;
  padding: 24px 32px;
  box-shadow: 0 24px 48px rgba(16, 16, 19, 0.18);
  font-family: "Urbanist", sans-serif;
}

.l3m-referral-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}

.l3m-referral-sub {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #6b6b6b;
}

.l3m-referral-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.l3m-referral-name-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .l3m-referral-name-row {
    grid-template-columns: 1fr;
  }
}

.l3m-referral-input {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 159, 67, 0.4);
  background: #fff;
  padding: 0 16px;
  font: inherit;
  box-shadow: 0 4px 16px rgba(255, 159, 67, 0.14);
}

.l3m-referral-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
  color: #393939;
}

.l3m-referral-check input {
  margin-top: 4px;
  accent-color: #ff9f43;
}

.l3m-referral-check a {
  color: inherit;
  font-weight: 600;
}

.l3m-referral-error {
  margin: -6px 0 0;
  font-size: 12px;
  color: #dc2626;
}

.l3m-referral-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  background: #fff4e8;
  padding: 12px 16px;
  font-size: 13px;
  color: #393939;
}

.l3m-referral-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 159, 67, 0.25);
  border-top-color: #ff9f43;
  border-radius: 50%;
  animation: l3m-spin 0.8s linear infinite;
}

@keyframes l3m-spin {
  to {
    transform: rotate(360deg);
  }
}

.l3m-referral-submit {
  width: 100%;
  margin-top: 4px;
}

.l3m-referral-link-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.l3m-referral-link {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid #ff9f43;
  background: #fff;
  padding: 8px 16px;
  font-size: 13px;
  color: #393939;
}

.l3m-referral-copy {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 159, 67, 0.3);
  background: #fff4e8;
  cursor: pointer;
  flex-shrink: 0;
}

.l3m-referral-copy-msg {
  margin: 4px 0 0;
  font-size: 12px;
  color: #16a34a;
}

.l3m-referral-qr-wrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.l3m-referral-qr {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.6);
  padding: 16px;
}

.l3m-referral-qr-caption,
.l3m-referral-share-label {
  margin: 8px 0 0;
  text-align: center;
  font-size: 13px;
  color: #6b6b6b;
}

.l3m-referral-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .l3m-referral-card {
    padding: 20px 16px;
    border-radius: 24px;
  }
}
