/* ============== LEADS-RECHNER — Dashboard Module ============== */
/* Compact, bounded, dashboard-feel. Not a full-page hero. */

.lr-wrap {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  padding: 120px 24px 80px;
}

/* Language switcher — top-right of page */
.lr-lang-switch {
  max-width: 880px;
  margin: 0 auto 18px;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  padding: 0 4px;
}
.lr-lang {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all .2s ease;
  text-decoration: none;
  cursor: pointer;
}
.lr-lang:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.1);
}
.lr-lang.active {
  color: var(--gold);
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.08);
}
.lr-lang.active:hover { color: var(--gold-light); }

/* Outer heading — small, not dominant */
.lr-title-row {
  max-width: 880px;
  margin: 0 auto 28px;
  text-align: center;
}
.lr-kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.lr-h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.lr-h1 em { font-style: italic; color: var(--gold); }
.lr-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* TL;DR answer-first block — AI Overview / citation bait */
.lr-tldr {
  max-width: 880px;
  margin: 0 auto 32px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.02));
  border: 1px solid rgba(201,168,76,.2);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-light);
}
.lr-tldr strong { color: var(--white); font-weight: 500; }
.lr-tldr-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .lr-tldr { padding: 18px 20px; font-size: 14px; }
}

/* THE MODULE — single bounded panel */
.lr-module {
  max-width: 880px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
}

/* Module header — toolbar row */
.lr-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lr-toolbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lr-toolbar-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 10px;
  color: var(--gold);
  flex-shrink: 0;
}
.lr-toolbar-icon svg { display: block; }
.lr-toolbar-title {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 500;
  letter-spacing: .3px;
}
.lr-toolbar-right {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.lr-toolbar-right::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: #5a9a6a;
  box-shadow: 0 0 8px rgba(90,154,106,.6);
}

/* Country switcher — iOS-style segmented control with sliding indicator */
.lr-countries {
  position: relative;
  display: inline-flex;
  padding: 4px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
}
.lr-country-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 0;
  background: var(--gold);
  border-radius: 100px;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), width .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 12px rgba(201,168,76,.4), 0 0 0 1px rgba(201,168,76,.2);
  z-index: 0;
  pointer-events: none;
}
.lr-country {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  background: none;
  border: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: color .25s ease;
  user-select: none;
  letter-spacing: .4px;
  white-space: nowrap;
}
.lr-country:hover { color: var(--white); }
.lr-country.active { color: var(--black); }
.lr-country-flag { font-size: 15px; line-height: 1; }

/* Narrow desktop — hide country labels, show only flags */
@media (max-width: 960px) and (min-width: 721px) {
  .lr-country { padding: 9px 12px; gap: 0; }
  .lr-country-label { display: none; }
  .lr-country-flag { font-size: 18px; }
}

/* Mobile native dropdowns (country + industry) — hidden by default, shown on mobile */
.lr-country-select,
.lr-industry-select {
  display: none;
  width: 100%;
  padding: 14px 16px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 22px;
  padding-right: 44px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color .2s;
  min-height: 48px;
}
.lr-country-select { color: var(--gold-light); }
.lr-country-select:focus,
.lr-industry-select:focus { outline: none; border-color: var(--gold); }
.lr-country-select option,
.lr-industry-select option {
  background: var(--dark);
  color: var(--white);
  padding: 8px;
}

/* Mobile: swap segmented/pill UIs for native selects */
@media (max-width: 720px) {
  .lr-countries { display: none !important; }
  .lr-pills { display: none !important; }
  .lr-country-select { display: block; }
  .lr-industry-select { display: block; }
}

/* Industry pills */
.lr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.lr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gray-light);
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}
.lr-pill-emoji { font-size: 16px; line-height: 1; }
.lr-pill-icon {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  transition: color .2s;
}
.lr-pill-icon svg { display: block; }
.lr-pill.active .lr-pill-icon { color: var(--black); }
.lr-pill:hover {
  border-color: rgba(201,168,76,.4);
  color: var(--white);
  background: rgba(201,168,76,.06);
}
.lr-pill.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 500;
}
.lr-pill.active:hover { background: var(--gold-light); color: var(--black); }

/* KPI tiles row */
.lr-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.lr-kpi {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 18px 16px;
  position: relative;
  transition: border-color .2s;
}
.lr-kpi.highlight {
  background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.04));
  border-color: rgba(201,168,76,.35);
}
.lr-kpi-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.lr-kpi-value {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.lr-kpi-value .unit {
  font-size: .55em;
  color: var(--gold);
  font-weight: 400;
  margin-right: 4px;
}
.lr-kpi.highlight .lr-kpi-value .unit { color: var(--gold-light); }
.lr-kpi-sub {
  font-size: 11px;
  color: var(--gray-light);
  margin-top: 8px;
  letter-spacing: .3px;
}
@media (max-width: 880px) {
  .lr-kpis { grid-template-columns: repeat(2, 1fr); }
}

/* Profit KPI — negative state */
.lr-kpi-value.negative { color: #e87070; }
.lr-kpi-value.negative .unit { color: #e87070; }

/* Universal red warning — lead ≠ one sale */
.lr-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(232, 112, 112, .08);
  border: 1px solid rgba(232, 112, 112, .3);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 18px;
  color: #ff9d9d;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .2px;
}
.lr-note-icon {
  flex-shrink: 0;
  color: #ff7070;
  font-size: 14px;
  line-height: 1.55;
}
.lr-note strong { color: #ffb4b4; font-weight: 600; }

/* Budget row — inline */
.lr-budget-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  margin-bottom: 20px;
}
.lr-budget-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  min-width: 70px;
  flex-shrink: 0;
}
.lr-slider {
  flex: 1;
  -webkit-appearance: none; appearance: none;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.lr-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(201,168,76,.12), 0 0 12px rgba(201,168,76,.4);
  transition: transform .15s;
}
.lr-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.lr-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: none;
  box-shadow: 0 0 0 4px rgba(201,168,76,.12);
}
.lr-budget-display {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

/* FUNNEL — compact horizontal */
.lr-funnel {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
}
.lr-funnel-title {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.lr-funnel-stages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lr-funnel-stage {
  display: grid;
  grid-template-columns: 100px 1fr 70px;
  gap: 12px;
  align-items: center;
}
.lr-funnel-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}
.lr-funnel-bar-track {
  height: 26px;
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.lr-funnel-bar {
  height: 100%;
  border-radius: 6px;
  transition: width .8s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.lr-funnel-stage:nth-child(1) .lr-funnel-bar { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }
.lr-funnel-stage:nth-child(2) .lr-funnel-bar { background: linear-gradient(90deg, rgba(201,168,76,.75), rgba(201,168,76,.45)); }
.lr-funnel-stage:nth-child(3) .lr-funnel-bar { background: linear-gradient(90deg, rgba(201,168,76,.55), rgba(201,168,76,.25)); }
.lr-funnel-bar::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  animation: lrShimmer 2.8s ease-in-out infinite;
}
@keyframes lrShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.lr-funnel-number {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}
.lr-funnel-finale {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(201,168,76,.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lr-funnel-finale-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lr-funnel-finale-item.profit { text-align: right; }
.lr-funnel-finale-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.lr-funnel-finale-value,
.lr-funnel-finale-value-profit {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.lr-funnel-finale-value-profit {
  color: #7ec08c;
}
.lr-funnel-finale-value-profit.negative { color: #e87070; }
.lr-funnel-finale-disclaimer {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.04);
  font-size: 10px;
  color: var(--gray);
  letter-spacing: .3px;
  text-align: center;
}
@media (max-width: 480px) {
  .lr-funnel-finale { grid-template-columns: 1fr; gap: 12px; }
  .lr-funnel-finale-item.profit { text-align: left; }
}

/* Channel verdict — compact strip */
.lr-verdict {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(90deg, rgba(201,168,76,.1), rgba(201,168,76,.02));
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  margin-bottom: 16px;
}
.lr-verdict-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  color: var(--gold);
}
.lr-verdict-icon svg { display: block; }
.lr-verdict-body { flex: 1; }
.lr-verdict-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.lr-verdict-text {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.4;
  font-style: italic;
  color: var(--white);
}

/* Advanced toggle + panel */
.lr-advanced-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--gray-light);
  padding: 10px 16px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .2s;
}
.lr-advanced-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lr-advanced-toggle .arrow { transition: transform .2s; font-size: 10px; }
.lr-advanced-toggle.open .arrow { transform: rotate(180deg); }
.lr-advanced {
  display: none;
  margin-top: 16px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 18px;
}
.lr-advanced.show { display: block; animation: lrFadeIn .3s ease; }
@keyframes lrFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.lr-adv-row {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.lr-adv-row:last-child { border: none; }
.lr-adv-label-wrap { display: flex; flex-direction: column; gap: 2px; }
.lr-adv-label {
  font-size: 12px;
  color: var(--gray-light);
}
.lr-adv-hint {
  font-size: 10px;
  color: var(--gray);
}
.lr-adv-input {
  background: var(--black);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  padding: 8px 10px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  text-align: center;
  width: 100%;
  transition: border-color .2s;
}
.lr-adv-input:focus { outline: none; border-color: var(--gold); }

/* CTA — compact below module */
.lr-cta {
  max-width: 880px;
  margin: 40px auto 0;
  text-align: center;
  padding: 32px;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 16px;
}
.lr-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  margin-bottom: 10px;
}
.lr-cta p {
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 1.55;
}
.lr-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all .2s;
}
.lr-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
}

/* Benchmark comparison table */
.lr-benchmark {
  max-width: 880px;
  margin: 56px auto 40px;
  padding: 28px 28px 22px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.lr-benchmark-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--white);
}
.lr-benchmark-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 22px;
  letter-spacing: .3px;
}
.lr-benchmark-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lr-benchmark table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: var(--font-sans);
}
.lr-benchmark th,
.lr-benchmark td {
  padding: 11px 12px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  white-space: nowrap;
}
.lr-benchmark th {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  padding-bottom: 14px;
}
.lr-benchmark td:first-child { color: var(--white); font-weight: 500; white-space: normal; }
.lr-benchmark td.num { font-family: var(--font-serif); color: var(--gold-light); text-align: right; }
.lr-benchmark td.num.big { font-size: 15px; color: var(--white); font-weight: 700; }
.lr-benchmark td.chan { font-size: 12px; color: var(--gray-light); }
.lr-benchmark tr:last-child td { border-bottom: none; }
.lr-benchmark tr:hover td { background: rgba(201,168,76,.04); }
.lr-benchmark-emoji { margin-right: 6px; }

/* SEO article sections below tool */
.lr-article {
  max-width: 760px;
  margin: 60px auto 0;
  padding: 0 8px;
  color: var(--white);
}
.lr-section {
  margin-bottom: 48px;
}
.lr-section h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
}
.lr-section p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 14px;
}
.lr-section p strong { color: var(--white); font-weight: 500; }
.lr-formula {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 20px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--gold-light);
  text-align: center;
}
.lr-formula strong { color: var(--gold); font-weight: 700; font-family: var(--font-serif); font-size: 18px; }
.lr-list {
  list-style: none;
  margin-top: 12px;
}
.lr-list li {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-light);
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.lr-list li:last-child { border: none; }
.lr-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-weight: 700;
}
.lr-list li strong { color: var(--white); font-weight: 500; }

/* FAQ accordion */
.lr-faq { margin-top: 12px; }
.lr-faq-item {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.lr-faq-item[open] { border-color: rgba(201,168,76,.25); }
.lr-faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
  transition: color .2s;
}
.lr-faq-item summary::-webkit-details-marker { display: none; }
.lr-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform .3s;
}
.lr-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lr-faq-item summary:hover { color: var(--gold-light); }
.lr-faq-item p {
  padding: 0 22px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-light);
}

/* Methodology — tiny footer */
.lr-method {
  max-width: 880px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.7;
  padding: 0 20px;
}
.lr-method strong { color: var(--gold-light); font-weight: 500; }

.lr-wrap img { filter: none !important; }

/* ============== MOBILE POLISH (≤640px) ============== */
@media (max-width: 640px) {
  /* Language switcher — bump touch target ≥44px */
  .lr-lang { padding: 12px 18px; font-size: 12px; }

  /* Toolbar sub-label */
  .lr-toolbar-right { font-size: 12px; }

  /* KPI labels — legible */
  .lr-kpi-label { font-size: 11px; letter-spacing: 1.8px; }
  .lr-kpi-sub { font-size: 12px; }

  /* Funnel — give the bar the space it deserves */
  .lr-funnel { padding: 14px; }
  .lr-funnel-stage { grid-template-columns: 52px 1fr 42px; gap: 8px; }
  .lr-funnel-label { font-size: 9px; letter-spacing: .8px; padding-right: 0; }
  .lr-funnel-number { font-size: 16px; }
  .lr-funnel-finale-label { font-size: 11px; }

  /* Advanced hints */
  .lr-adv-hint { font-size: 11px; }
}
