:root {
  --red: #e84734;
  --red-600: #cf3b2b;
  --red-700: #ad2d21;
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #667085;
  --line: #e6eaf0;
  --soft: #f7f8fb;
  --cream: #fff8f3;
  --rose: #fff0ec;
  --white: #ffffff;
  --green: #18b981;
  --amber: #f7c873;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 32px 90px rgba(17, 24, 39, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

h1, h2, h3, p { margin-top: 0; }

button,
input,
select,
textarea {
  font: inherit;
}

/* -------------------------------------------------------------------------
   Shared app components
   ------------------------------------------------------------------------- */

.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-header .brand img,
.auth-card .brand img,
.admin-sidebar .side-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.brand-header .name {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-header .tagline {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 34px 24px 90px;
}

.page-wrap.narrow { max-width: 560px; }

.card,
.auth-card,
.kpi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.eyebrow {
  margin-bottom: 9px;
  color: var(--red-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.muted { color: var(--muted); font-size: 14px; line-height: 1.45; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(232, 71, 52, 0.26);
}

.btn-primary:hover { background: var(--red-600); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-block { width: 100%; }
.btn-sm { min-height: 36px; padding: 8px 13px; font-size: 13px; border-radius: 10px; }

.field { margin-bottom: 17px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 750;
}
.field .hint { margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(232, 71, 52, .55);
  box-shadow: 0 0 0 4px rgba(232, 71, 52, .10);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.checkbox-row input { margin-top: 3px; }

.alert {
  padding: 13px 15px;
  margin-bottom: 16px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 650;
}
.alert-error { background: #fff0ed; color: #b42318; border: 1px solid #ffd4cb; }
.alert-success { background: #ecfdf3; color: #067647; border: 1px solid #b7efd1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-global { background: #fff0ed; color: var(--red-700); }
.badge-local { background: #edf2ff; color: #315df6; }
.badge-success { background: #e9fbf4; color: #08775d; }

table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13.5px; }
th {
  padding: 11px 14px;
  color: var(--muted);
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
td { padding: 13px 14px; border-bottom: 1px solid #eef1f5; }
tr:last-child td { border-bottom: 0; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.tabs .tab {
  padding: 10px 15px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}
.tabs .tab.active { color: var(--red-600); border-bottom-color: var(--red); }

/* -------------------------------------------------------------------------
   Landing page: SaaS clair corporate, rouge dominant
   ------------------------------------------------------------------------- */

.wallet-landing {
  background:
    radial-gradient(circle at 72% 12%, rgba(232, 71, 52, .12), transparent 30%),
    radial-gradient(circle at 8% 16%, rgba(244, 215, 180, .28), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fff9f5 46%, #f8fafc 100%);
  color: var(--ink);
  overflow-x: hidden;
}

.wl-hero-shell {
  position: relative;
  overflow: hidden;
  padding: 28px 52px 76px;
  border-bottom-right-radius: 132px;
  border-bottom: 1px solid #f0ded7;
  background:
    radial-gradient(circle at 74% 32%, rgba(232, 71, 52, .20), transparent 27%),
    linear-gradient(90deg, rgba(232, 71, 52, .052) 1px, transparent 1px),
    linear-gradient(rgba(232, 71, 52, .04) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #fff7f3 100%);
  background-size: auto, 78px 78px, 78px 78px, auto;
}

.wl-nav,
.wl-hero {
  position: relative;
  z-index: 1;
}

.wl-nav {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.wl-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 880;
  letter-spacing: -0.035em;
}
.wl-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid #efd8d0;
  background: #fff;
  box-shadow: 0 14px 36px rgba(232, 71, 52, .13);
}

.wl-nav nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid #eadbd5;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 40px rgba(17, 24, 39, .055);
}
.wl-nav nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #667085;
  font-size: 14px;
  font-weight: 780;
}
.wl-nav nav a:hover { background: var(--rose); color: var(--red-700); }

.wl-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wl-nav-actions > a:first-child {
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
}
/* Cette page n'a qu'un seul lien dans .wl-nav-actions ("Nous contacter") — il ne
   doit jamais hériter du style "lien simple" ci-dessus juste parce qu'il est le
   premier enfant, sinon le bouton perd sa couleur de marque. */
.wl-nav-actions > a.wl-demo-btn:first-child {
  color: #c80f44;
}
.wl-demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,41,98,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #c80f44;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(255,41,98,.10);
  backdrop-filter: blur(12px);
}

.wl-demo-btn:hover {
  background: #fff0f5;
  border-color: rgba(255,41,98,.44);
  transform: translateY(-1px);
}

.wl-hero {
  width: min(1140px, 100%);
  margin: 74px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
  align-items: center;
  gap: 54px;
}

.wl-kicker,
.wl-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid #ffd5cc;
  border-radius: 999px;
  background: #fff0ec;
  color: var(--red-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.wl-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(232,71,52,.12);
}

.wl-copy h1 {
  max-width: 650px;
  margin: 24px 0 18px;
  color: var(--ink);
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.wl-copy p {
  max-width: 610px;
  margin: 0;
  color: #4f5b6d;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 520;
}

.wl-copy,
.wl-product { animation: wl-rise .7s cubic-bezier(.2,.8,.2,1) both; }
.wl-product { animation-delay: .08s; }
@keyframes wl-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.wl-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.wl-capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #f0ded6;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #667085;
  box-shadow: 0 12px 28px rgba(17,24,39,.045);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.wl-primary,
.wl-secondary,
.wl-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 15px;
  font-size: 17px;
  font-weight: 850;
}
.wl-primary {
  background: linear-gradient(180deg, #ff6b58 0%, var(--red) 100%);
  color: #fff;
  box-shadow: inset 0 -4px 0 rgba(120,18,10,.18), 0 22px 50px rgba(232,71,52,.28);
}
.wl-secondary {
  border: 1px solid #e7cfc7;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(17,24,39,.055);
}

.wl-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 500px;
  margin-top: 28px;
}
.wl-metrics div {
  padding: 15px 16px;
  border: 1px solid #f0ded6;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(17,24,39,.05);
}
.wl-metrics strong {
  display: block;
  color: var(--red);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.wl-metrics span {
  display: block;
  margin-top: 7px;
  color: #667085;
  font-size: 12px;
  font-weight: 760;
}

.wl-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 26px);
  min-height: 430px;
  padding: 30px 18px;
  isolation: isolate;
}
.wl-product::before {
  content: "";
  position: absolute;
  inset: 58px 0 44px;
  z-index: -1;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 38%),
    linear-gradient(135deg, rgba(232,71,52,.94), rgba(189,47,36,.90));
  box-shadow: 0 28px 74px rgba(232,71,52,.16);
}
.wl-product-label,
.wl-live-card {
  position: absolute;
  z-index: 5;
  border: 1px solid #f0ded6;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(17,24,39,.10);
}
.wl-product-label {
  top: 16px;
  right: 28px;
  width: 184px;
  padding: 14px 16px;
  border-radius: 18px;
  animation: wl-float 5.8s ease-in-out infinite;
}
.wl-product-label::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--amber));
}
.wl-product-label strong { display: block; font-size: 13px; letter-spacing: -0.02em; }
.wl-product-label span { display: block; margin-top: 4px; color: var(--muted); font-size: 11.5px; font-weight: 720; }

.wl-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 11px;
  background: #fff;
  color: var(--red-700);
  box-shadow: 0 18px 42px rgba(120,18,10,.18);
  font-size: 11.5px;
  font-weight: 900;
  animation: wl-float 4.6s ease-in-out infinite;
}
.wl-chip-left { left: 8px; top: 178px; }
.wl-chip-right { right: 10px; top: 108px; animation-delay: .7s; }
@keyframes wl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.wl-pass {
  width: 206px;
  height: 342px;
  min-height: 342px;
  flex: 0 0 206px;
  padding: 15px;
  border: 7px solid #151926;
  border-radius: 27px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 38px 88px rgba(17,19,31,.25);
  transition: transform .32s ease;
}
.wl-pass-front {
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
  background: linear-gradient(180deg, #fff 0%, #fff7f4 52%, #ffe2db 100%);
}
.wl-pass-front::after {
  content: "";
  position: absolute;
  inset: -38% auto auto -30%;
  width: 150%;
  height: 38%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.62), transparent);
  transform: rotate(18deg);
  animation: wl-shine 6s ease-in-out infinite;
}
@keyframes wl-shine {
  0%, 50% { translate: -70% 0; opacity: 0; }
  58% { opacity: 1; }
  75%, 100% { translate: 95% 0; opacity: 0; }
}
.wl-pass-back {
  position: relative;
  z-index: 1;
  transform: rotate(2deg);
  background: #fff;
  overflow: hidden;
}
.wl-product:hover .wl-pass-front { transform: rotate(-1deg) translateY(-5px); }
.wl-product:hover .wl-pass-back { transform: rotate(1deg) translateY(-5px); }

.wl-phone-bar {
  width: 62px;
  height: 17px;
  margin: -8px auto 14px;
  border-radius: 999px;
  background: #080a0f;
}
.wl-pass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
}
.wl-pass h2 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.wl-pass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.wl-pass-grid div,
.wl-pass-row {
  padding: 8px;
  border: 1px solid #f2ddd5;
  border-radius: 12px;
  background: rgba(255,255,255,.82);
}
.wl-pass-grid span,
.wl-pass-row span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.wl-pass-grid strong,
.wl-pass-row strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 10.5px;
  line-height: 1.1;
}
.wl-pass img {
  display: block;
  width: 118px;
  height: 118px;
  margin: 13px auto 7px;
  padding: 10px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16,24,40,.14);
}
.wl-pass-back img {
  width: 112px;
  height: 112px;
  margin-top: 12px;
}
.wl-pass small {
  display: block;
  color: var(--muted);
  text-align: center;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
}
.wl-pass-photo {
  height: 78px;
  margin: 12px 0;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,0) 42%),
    linear-gradient(135deg, #1a2030 0%, #323b52 48%, var(--red) 100%);
  position: relative;
}

.wl-pass-photo::before,
.wl-pass-photo::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.wl-pass-photo::before {
  width: 34px;
  height: 34px;
  left: 16px;
  top: 16px;
}

.wl-pass-photo::after {
  width: 58px;
  height: 12px;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.44);
}
.wl-live-card {
  left: 50%;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  animation: wl-float 5s ease-in-out infinite;
}
.wl-live-card span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(24,185,129,.14);
}

.wl-trust {
  padding: 42px 52px 34px;
  background: #fff;
  text-align: center;
}
.wl-trust p {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.wl-trust div {
  width: min(840px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.wl-trust span {
  color: rgba(17,24,39,.38);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.wl-feature-grid,
.wl-experience,
.wl-section,
.wl-final-cta {
  width: min(1140px, calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
}
.wl-feature-grid { padding: 54px 0 18px; }
.wl-feature-head { max-width: 680px; margin-bottom: 24px; }
.wl-feature-head span,
.wl-experience-copy span,
.wl-pill,
.wl-final-cta span {
  color: var(--red-700);
  font-size: 11.5px;
  font-weight: 950;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.wl-feature-head h2,
.wl-experience-copy h2,
.wl-section-copy h2,
.wl-final-cta h2 {
  text-wrap: balance;
}
.wl-feature-head h2 {
  margin: 15px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.wl-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.wl-features article {
  min-height: 198px;
  padding: 20px;
  border: 1px solid #ead9d2;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
  box-shadow: 0 18px 54px rgba(17,19,31,.075);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wl-features article::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(232,71,52,.12);
}
.wl-features article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(17,19,31,.10);
}
.wl-feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--rose);
  border: 1px solid #ffd5cc;
  position: relative;
}

.wl-feature-icon::before,
.wl-feature-icon::after {
  content: "";
  position: absolute;
  border-color: var(--red-700);
}

.icon-qr::before {
  width: 18px;
  height: 18px;
  border: 2px solid var(--red-700);
  border-radius: 4px;
  box-shadow: inset 0 0 0 5px #fff;
}

.icon-wallet::before {
  width: 22px;
  height: 16px;
  border: 2px solid var(--red-700);
  border-radius: 5px;
}

.icon-wallet::after {
  right: 9px;
  top: 18px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--red-700);
}

.icon-scan::before {
  width: 22px;
  height: 22px;
  border: 2px solid var(--red-700);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 8px;
}

.icon-scan::after {
  width: 18px;
  height: 2px;
  background: var(--red-700);
}

.icon-crm::before {
  width: 22px;
  height: 16px;
  border-left: 3px solid var(--red-700);
  border-bottom: 3px solid var(--red-700);
}

.icon-crm::after {
  left: 14px;
  bottom: 13px;
  width: 18px;
  height: 12px;
  border-top: 3px solid var(--red-700);
  border-right: 3px solid var(--red-700);
  transform: skewY(-18deg);
}
.wl-features h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.035em;
}
.wl-features p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.48;
}

.wl-experience {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(380px,1.1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid #ead9d2;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff 0%, #fff8f4 100%);
  box-shadow: 0 18px 54px rgba(17,19,31,.075);
}
.wl-experience-copy h2,
.wl-section-copy h2 {
  margin: 16px 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.wl-experience-copy p,
.wl-section-copy p,
.wl-section-copy li {
  color: #344054;
  font-size: 17px;
  line-height: 1.55;
}
.wl-experience-panel { display: grid; gap: 14px; }
.wl-status-line,
.wl-progress-card,
.wl-offer-card {
  border: 1px solid #ead9d2;
  background: #fff;
  box-shadow: 0 18px 54px rgba(17,19,31,.075);
}
.wl-status-line {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.wl-status-line span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(24,185,129,.16);
}
.wl-progress-card,
.wl-offer-card {
  padding: 20px;
  border-radius: 21px;
}
.wl-progress-card > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.wl-progress-card small,
.wl-offer-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.wl-progress-card strong,
.wl-offer-card strong {
  color: var(--ink);
  font-size: 25px;
  letter-spacing: -0.04em;
}
.wl-progress-dots {
  display: grid;
  grid-template-columns: repeat(10,1fr);
  gap: 7px;
  margin-top: 18px;
}
.wl-progress-dots i,
.wl-progress-dots em {
  display: block;
  aspect-ratio: 1;
  border-radius: 999px;
}
.wl-progress-dots i { background: var(--red); box-shadow: 0 8px 18px rgba(232,71,52,.22); }
.wl-progress-dots em { background: #edf0f5; }
.wl-offer-card {
  background: radial-gradient(circle at 84% 26%, rgba(255,255,255,.16), transparent 26%),
              linear-gradient(135deg, var(--red) 0%, var(--red-700) 62%, #78120a 100%);
}
.wl-offer-card small,
.wl-offer-card strong,
.wl-offer-card span { display: block; color: #fff; }
.wl-offer-card small { color: #ffe2dc; }
.wl-offer-card strong { margin-top: 8px; }
.wl-offer-card span { margin-top: 7px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 650; }

.wl-section {
  margin-top: 26px;
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 52px 0;
}
.wl-workflow {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.wl-flow-step,
.wl-flow-panel {
  border: 1px solid #ead9d2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(17,19,31,.075);
}

.wl-flow-step {
  padding: 18px;
}

.wl-flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--rose);
  color: var(--red-700);
  font-size: 11px;
  font-weight: 950;
}

.wl-flow-step strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.025em;
}

.wl-flow-step small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.wl-flow-panel {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #fff 0%, #fff8f4 100%);
}

.wl-flow-panel img {
  width: 104px;
  height: 104px;
  padding: 9px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17,24,39,.10);
}

.wl-flow-panel strong,
.wl-flow-panel span {
  display: block;
}

.wl-flow-panel strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.wl-flow-panel span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.wl-section-copy ul {
  margin: 18px 0 0;
  padding-left: 24px;
}
.wl-section-copy li { margin: 7px 0; }
.wl-dark-btn {
  margin-top: 26px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 44px rgba(232,71,52,.22);
}

.wl-final-cta {
  min-height: 220px;
  margin-bottom: 72px;
  padding: 36px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 34px;
  color: var(--ink);
  border: 1px solid #ead9d2;
  background:
    radial-gradient(circle at 84% 24%, rgba(232,71,52,.11), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fff7f3 100%);
  box-shadow: 0 24px 70px rgba(17,24,39,.09);
}
.wl-final-cta h2 {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.wl-final-cta span { color: var(--red-700); }

.wl-final-cta p {
  max-width: 580px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.wl-final-cta a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 15px;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(232,71,52,.24);
}

@media (prefers-reduced-motion: reduce) {
  .wl-copy,
  .wl-product,
  .wl-chip,
  .wl-live-card,
  .wl-product-label,
  .wl-pass-front::after {
    animation: none;
  }
}

/* -------------------------------------------------------------------------
   Client wallet app
   ------------------------------------------------------------------------- */

.client-body {
  background: linear-gradient(180deg, #fff 0%, #fff7f3 46%, #f6f7fb 100%);
  min-height: 100vh;
}
.client-body h1 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.wallet-card-flip {
  perspective: 1200px;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
}
.wallet-card-inner {
  position: relative;
  min-height: 252px;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.wallet-card-flip.flipped .wallet-card-inner { transform: rotateY(180deg); }
.wc-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}
.wc-back {
  transform: rotateY(180deg);
  display: grid;
  place-items: center;
  text-align: center;
}

.wallet-card {
  width: 100%;
  min-height: 252px;
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #151b2b 0%, #2b354b 52%, var(--red) 100%);
  box-shadow: 0 28px 70px rgba(17,24,39,.24);
  overflow: hidden;
  position: relative;
}
.wc-top,
.wc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.wc-logo { display: flex; align-items: center; gap: 9px; }
.wc-logo img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.wc-logo span { font-size: 14px; font-weight: 900; }
.wc-type {
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wc-name {
  margin-top: 34px;
  color: #fff;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.035em;
}
.wc-sub {
  margin-top: 3px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
}
.wc-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.wc-stamp {
  width: 23px;
  height: 23px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
}
.wc-stamp.filled {
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.wc-stamp.filled::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 6.5px auto;
  border-radius: 999px;
  background: var(--red);
}
.wc-progress-label { color: rgba(255,255,255,.80); font-size: 11px; line-height: 1.35; }
.wc-flip-hint { width: 17px; height: 17px; opacity: .7; }
.wc-back-qr img {
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.code-value-sm {
  color: var(--muted);
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .05em;
}
.reward-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 390px;
  margin: 17px auto 0;
  padding: 15px 17px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-700));
  box-shadow: 0 18px 42px rgba(232,71,52,.24);
}
.reward-banner svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.reward-banner-label { font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }
.reward-banner-value { margin-top: 2px; font-size: 15px; font-weight: 850; }

.wallet-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.wallet-btn {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: #080a0f;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.wallet-btn.google { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.wallet-btn.disabled { opacity: .48; cursor: not-allowed; pointer-events: none; }
.wallet-note { color: var(--muted); text-align: center; font-size: 12px; }

.progress-track {
  height: 9px;
  border-radius: 999px;
  background: #edf0f5;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), #ff8a78);
}

.client-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(17,24,39,.13);
  backdrop-filter: blur(14px);
}
.client-nav a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  border-radius: 999px;
  color: var(--muted);
}
.client-nav a.active { background: var(--red); color: #fff; }
.client-nav svg { width: 21px; height: 21px; }

/* -------------------------------------------------------------------------
   Admin / pro
   ------------------------------------------------------------------------- */

.admin-body,
.pro-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 8%, rgba(232,71,52,.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  position: sticky;
  top: 16px;
  height: calc(100vh - 32px);
  margin: 16px 0 16px 16px;
  padding: 20px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-sidebar .side-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.admin-sidebar .side-brand span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 13px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 780;
}
.admin-sidebar a:hover { background: var(--rose); color: var(--red-700); }
.admin-sidebar a.active { background: var(--red); color: #fff; }
.admin-sidebar svg { width: 18px; height: 18px; }

.admin-main {
  width: min(1240px, 100%);
  padding: 34px 34px 80px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin: 22px 0 32px;
}
.kpi-card {
  padding: 20px;
  border-radius: 22px;
}
.kpi-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--amber));
}
.kpi-label { color: var(--muted); font-size: 12px; font-weight: 760; }
.kpi-value {
  margin-top: 6px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.035em;
}
.kpi-delta { margin-top: 4px; color: #08775d; font-size: 11.5px; font-weight: 800; }

.scan-block { text-align: center; }
.scan-block video {
  display: none;
  width: 100%;
  max-width: 360px;
  margin: 12px auto;
  border-radius: 20px;
  background: #000;
  box-shadow: var(--shadow);
}
.scan-status { min-height: 18px; color: var(--muted); font-size: 12.5px; }

.promo-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.promo-card-media {
  height: 140px;
  background: linear-gradient(135deg, #fff0ec, var(--red));
}
.promo-card-body { padding: 16px; }
.promo-card-title { font-weight: 850; font-size: 14px; }

.builder-row,
.pdv-locked-row,
.upload-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.builder-row { margin-bottom: 10px; }
.builder-row .field-label { flex: 1; font-weight: 760; }
.builder-row .field-type {
  padding: 4px 8px;
  border-radius: 8px;
  background: #f2f4f7;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.builder-row button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.pdv-locked-row { justify-content: space-between; background: #fff8f5; }
.pdv-locked-row a { color: var(--red-700); font-weight: 850; font-size: 12.5px; }

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 78% 12%, rgba(232,71,52,.18), transparent 30%),
    linear-gradient(180deg, #fff, #fff7f3);
}
.auth-card {
  width: 100%;
  max-width: 400px;
  padding: 32px;
}
.auth-card .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.auth-card .brand span { font-weight: 900; }
.auth-card h1 {
  color: var(--ink);
  text-align: center;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.auth-card p.muted { text-align: center; }

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1100px) {
  .wl-hero { grid-template-columns: 1fr; gap: 34px; }
  .wl-product { min-height: 450px; }
  .kpi-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .wl-hero-shell {
    padding: 22px 24px 62px;
    border-bottom-right-radius: 76px;
  }
  .wl-nav { grid-template-columns: 1fr auto; }
  .wl-nav nav,
  .wl-nav-actions > a:first-child { display: none; }
  .wl-hero { margin-top: 48px; }
  .wl-features { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .wl-experience,
  .wl-section { grid-template-columns: 1fr; }
  .wl-experience { padding: 30px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: relative;
    top: auto;
    height: auto;
    margin: 10px;
    border-radius: 18px;
    flex-direction: row;
    overflow-x: auto;
  }
  .admin-sidebar .side-brand { display: none; }
  .admin-sidebar a { white-space: nowrap; }
  .admin-main { padding: 24px 18px 70px; }
}

@media (max-width: 680px) {
  .brand-header { padding: 14px 16px; }
  .page-wrap { padding: 26px 16px 88px; }
  .field-row { grid-template-columns: 1fr; }
  table { display: block; overflow-x: auto; white-space: nowrap; }

  .wl-hero-shell {
    padding: 18px 16px 46px;
    border-bottom-right-radius: 42px;
  }
  .wl-brand { font-size: 21px; }
  .wl-brand img { width: 38px; height: 38px; }
  .wl-demo-btn {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 12px;
  }
  .wl-copy h1 {
    font-size: 38px;
    line-height: 1.04;
    letter-spacing: -0.035em;
  }
  .wl-copy p { font-size: 16px; }
  .wl-actions { flex-direction: column; }
  .wl-primary,
  .wl-secondary,
  .wl-dark-btn {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }
  .wl-metrics { grid-template-columns: 1fr; }
  .wl-product {
    min-height: 390px;
    padding: 24px 14px;
  }
  .wl-product::before {
    inset: 46px 8px 24px;
    border-radius: 30px;
  }
  .wl-product-label,
  .wl-chip,
  .wl-pass-back,
  .wl-live-card,
  .wl-capabilities { display: none; }
  .wl-pass-front { transform: none; }
  .wl-pass {
    width: 210px;
    height: 342px;
    flex-basis: 210px;
  }

  .wl-trust { padding: 34px 18px 24px; }
  .wl-trust div { grid-template-columns: repeat(2,1fr); }
  .wl-trust span { font-size: 17px; }

  .wl-feature-grid,
  .wl-experience,
  .wl-section,
  .wl-final-cta {
    width: min(100% - 32px, 1140px);
  }
  .wl-features { grid-template-columns: 1fr; }
  .wl-experience {
    padding: 24px;
    border-radius: 26px;
  }
  .wl-progress-card strong,
  .wl-offer-card strong { font-size: 23px; }
  .wl-section { padding: 28px 0; }
  .wl-section-visual { min-height: auto; }
  .wl-workflow { grid-template-columns: 1fr; }
  .wl-flow-panel { grid-column: span 1; }
  .wl-final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    border-radius: 26px;
  }
  .wl-final-cta a { width: 100%; }
  .kpi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wl-hero-shell {
    padding: 16px 14px 38px;
    border-bottom-right-radius: 30px;
    background-size: auto, 56px 56px, 56px 56px, auto;
  }

  .wl-nav { gap: 12px; }
  .wl-brand { font-size: 19px; }
  .wl-brand img { width: 34px; height: 34px; border-radius: 11px; }
  .wl-demo-btn {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .wl-hero { margin-top: 34px; gap: 24px; }
  .wl-kicker,
  .wl-pill {
    padding: 6px 10px;
    font-size: 10px;
  }

  .wl-copy h1 {
    margin: 18px 0 12px;
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -0.028em;
  }

  .wl-copy p {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .wl-actions { margin-top: 22px; gap: 10px; }
  .wl-primary,
  .wl-secondary,
  .wl-dark-btn {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 13px;
    font-size: 14.5px;
  }

  .wl-metrics { gap: 8px; margin-top: 18px; }
  .wl-metrics div { padding: 12px 14px; border-radius: 14px; }
  .wl-metrics strong { font-size: 19px; }
  .wl-metrics span { font-size: 11px; }

  .wl-product {
    min-height: 315px;
    padding: 18px 10px;
  }
  .wl-product::before { inset: 30px 12px 18px; border-radius: 24px; }
  .wl-pass {
    width: 178px;
    height: 318px;
    min-height: 318px;
    flex-basis: 178px;
    padding: 14px;
    border-width: 6px;
    border-radius: 23px;
  }
  .wl-phone-bar { width: 52px; height: 14px; margin: -8px auto 12px; }
  .wl-pass-top { font-size: 9.5px; }
  .wl-pass h2 { margin: 12px 0 10px; font-size: 17px; }
  .wl-pass-grid { gap: 6px; }
  .wl-pass-grid div { padding: 6px; border-radius: 10px; }
  .wl-pass-grid span { font-size: 7px; }
  .wl-pass-grid strong { font-size: 8.5px; }
  .wl-pass img {
    width: 94px;
    height: 94px;
    margin-top: 10px;
    padding: 8px;
    border-radius: 14px;
  }
  .wl-pass small { font-size: 9.5px; }

  .wl-trust { padding: 28px 16px 18px; }
  .wl-trust p { margin-bottom: 18px; font-size: 15px; }
  .wl-trust div { gap: 10px; }
  .wl-trust span { font-size: 14px; }

  .wl-feature-grid { padding: 34px 0 12px; }
  .wl-feature-head { margin-bottom: 18px; }
  .wl-feature-head h2,
  .wl-experience-copy h2,
  .wl-section-copy h2 {
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.028em;
  }

  .wl-feature-head span,
  .wl-experience-copy span,
  .wl-final-cta span { font-size: 10px; }

  .wl-features { gap: 10px; }
  .wl-features article {
    min-height: auto;
    padding: 16px;
    border-radius: 18px;
  }
  .wl-feature-icon { width: 36px; height: 36px; border-radius: 12px; font-size: 11.5px; }
  .wl-features h3 { margin: 18px 0 6px; font-size: 16px; }
  .wl-features p,
  .wl-experience-copy p,
  .wl-section-copy p,
  .wl-section-copy li {
    font-size: 14px;
    line-height: 1.5;
  }

  .wl-experience {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    gap: 18px;
  }
  .wl-status-line {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 11px;
  }
  .wl-progress-card,
  .wl-offer-card {
    padding: 16px;
    border-radius: 17px;
  }
  .wl-progress-card small,
  .wl-offer-card small { font-size: 10px; }
  .wl-progress-card strong,
  .wl-offer-card strong { font-size: 20px; }
  .wl-progress-dots { gap: 5px; margin-top: 14px; }

  .wl-section {
    margin-top: 18px;
    margin-bottom: 44px;
    padding: 20px 0;
    gap: 22px;
  }
  .wl-flow-step { padding: 14px; border-radius: 16px; }
  .wl-flow-step span { width: 28px; height: 28px; border-radius: 9px; font-size: 10px; }
  .wl-flow-step strong { margin-top: 14px; font-size: 16px; }
  .wl-flow-step small { font-size: 12px; }
  .wl-flow-panel { padding: 14px; border-radius: 16px; gap: 12px; }
  .wl-flow-panel img { width: 86px; height: 86px; border-radius: 14px; }
  .wl-flow-panel strong { font-size: 17px; }
  .wl-flow-panel span { font-size: 12.5px; }
  .wl-section-copy ul { margin-top: 12px; padding-left: 20px; }
  .wl-dark-btn { margin-top: 18px; }

  .wl-final-cta {
    min-height: auto;
    margin-bottom: 44px;
    padding: 22px 18px;
    gap: 18px;
    border-radius: 20px;
  }
  .wl-final-cta h2 {
    max-width: 100%;
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.14;
    letter-spacing: -0.026em;
  }
  .wl-final-cta a {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 13px;
    font-size: 14.5px;
  }
}

@media (max-width: 360px) {
  .wl-copy h1 { font-size: 28px; }
  .wl-demo-btn { padding: 0 10px; font-size: 10.5px; }
  .wl-pass {
    width: 164px;
    height: 300px;
    min-height: 300px;
    flex-basis: 164px;
  }
  .wl-pass img { width: 84px; height: 84px; }
  .wl-final-cta h2 { font-size: 22px; }
}

/* -------------------------------------------------------------------------
   LuveLink landing final
   ------------------------------------------------------------------------- */

.luvelink-landing {
  --red: #ff2962;
  --red-600: #ef1d58;
  --red-700: #c80f44;
  --rose: #fff0f5;
  --cream: #fff7fa;
  --line: #f4d6df;
  --muted: #6f7686;
  background:
    radial-gradient(circle at 82% 6%, rgba(255,41,98,.14), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255,165,191,.22), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff7fa 48%, #fff 100%);
}

.luvelink-landing .wl-hero-shell {
  padding: 26px 52px 72px;
  border-bottom: 1px solid #f8d9e2;
  border-bottom-right-radius: 110px;
  background:
    linear-gradient(90deg, rgba(255,41,98,.055) 1px, transparent 1px),
    linear-gradient(rgba(255,41,98,.045) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #fff8fb 100%);
  background-size: 76px 76px, 76px 76px, auto;
}

.luvelink-landing .wl-nav {
  width: min(1240px, 100%);
  grid-template-columns: auto 1fr auto;
}

.luvelink-landing .wl-brand {
  cursor: default;
  font-size: 25px;
  color: #101828;
}

.luvelink-landing .wl-brand img {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  background: transparent;
}

.luvelink-landing .wl-nav nav {
  justify-self: center;
  border-color: #f4d6df;
  background: rgba(255,255,255,.78);
}

.luvelink-landing .wl-nav nav a {
  color: #6f7686;
}

.luvelink-landing .wl-nav nav a:hover {
  background: #fff0f5;
  color: #c80f44;
}

.luvelink-landing .wl-nav-actions {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid #f4d6df;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: #c80f44;
  box-shadow: 0 18px 46px rgba(255,41,98,.10);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.luvelink-landing .wl-hero {
  width: min(1180px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(470px, .88fr);
  gap: 58px;
  margin-top: 70px;
}

.luvelink-landing .wl-kicker,
.luvelink-landing .wl-pill {
  border-color: #ffd2df;
  background: #fff0f5;
  color: #c80f44;
}

.luvelink-landing .wl-kicker::before {
  background: #ff2962;
  box-shadow: 0 0 0 6px rgba(255,41,98,.12);
}

.luvelink-landing .wl-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.luvelink-landing .wl-copy p {
  max-width: 650px;
  color: #4b5565;
}

.luvelink-landing .wl-capabilities span,
.luvelink-landing .wl-metrics div {
  border-color: #f4d6df;
  background: rgba(255,255,255,.86);
}

.luvelink-landing .wl-metrics strong {
  color: #ff2962;
}

.luvelink-landing .wl-product {
  min-height: 560px;
  gap: clamp(18px, 3.4vw, 34px);
  padding: 76px 10px 26px;
}

.luvelink-landing .wl-product::before,
.luvelink-landing .wl-chip,
.luvelink-landing .wl-product-label,
.luvelink-landing .wl-live-card {
  display: none;
}

.wl-slogan-card {
  position: absolute;
  top: 18px;
  left: 2px;
  z-index: 5;
  width: min(286px, calc(100% - 24px));
  padding: 16px 18px;
  border: 1px solid #f4d6df;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 62px rgba(255,41,98,.12);
  backdrop-filter: blur(14px);
}

.wl-slogan-card strong {
  display: block;
  color: #101828;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.wl-slogan-card span {
  display: block;
  margin-top: 5px;
  color: #c80f44;
  font-size: 12px;
  font-weight: 850;
}

.wl-iphone {
  position: relative;
  width: clamp(206px, 18vw, 238px);
  aspect-ratio: 71.6 / 147.6;
  flex: 0 0 auto;
  padding: 13px;
  border: 9px solid #111827;
  border-radius: 46px;
  background: #111827;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 34px 90px rgba(16,24,40,.20);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.wl-iphone-front {
  transform: rotate(-2.2deg) translateY(8px);
}

.wl-iphone-back {
  transform: rotate(2.2deg) translateY(-10px);
}

.luvelink-landing .wl-product:hover .wl-iphone-front {
  transform: rotate(-1.2deg) translateY(0);
}

.luvelink-landing .wl-product:hover .wl-iphone-back {
  transform: rotate(1.2deg) translateY(-16px);
}

.wl-island {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: 76px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05070c;
}

.wl-phone-screen {
  height: 100%;
  padding: 48px 16px 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255,165,191,.72), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff4f8 54%, #ffe1eb 100%);
  overflow: hidden;
}

.wl-iphone-back .wl-phone-screen {
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.78), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fff2f7 48%, #ffa5bf 100%);
}

.wl-iphone .wl-pass-top {
  color: #101828;
  font-size: 10px;
}

.wl-iphone h2 {
  margin: 15px 0 12px;
  color: #101828;
  font-size: 21px;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.wl-iphone .wl-pass-grid {
  gap: 7px;
}

.wl-iphone .wl-pass-grid div,
.wl-iphone .wl-pass-row {
  border-color: rgba(255,41,98,.18);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
}

.wl-iphone .wl-pass-grid span,
.wl-iphone .wl-pass-row span {
  color: #7a3d52;
  font-size: 7.5px;
}

.wl-iphone .wl-pass-grid strong,
.wl-iphone .wl-pass-row strong {
  color: #101828;
  font-size: 9.8px;
}

.wl-iphone img {
  display: block;
  width: 116px;
  height: 116px;
  margin: 15px auto 8px;
  padding: 9px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16,24,40,.14);
}

.wl-iphone small {
  display: block;
  color: #6f7686;
  text-align: center;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 850;
}

.wl-offer-visual {
  height: 96px;
  margin: 12px 0;
  border-radius: 19px;
  background:
    radial-gradient(circle at 24% 35%, rgba(255,255,255,.88) 0 15px, transparent 16px),
    radial-gradient(circle at 66% 68%, rgba(255,255,255,.68) 0 20px, transparent 21px),
    linear-gradient(135deg, #ff2962 0%, #ffa5bf 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}

.luvelink-landing .wl-trust {
  background: #fff;
}

.luvelink-landing .wl-trust span {
  color: rgba(255,41,98,.35);
}

.luvelink-landing .wl-feature-head span,
.luvelink-landing .wl-experience-copy span,
.luvelink-landing .wl-final-cta span {
  color: #c80f44;
}

.luvelink-landing .wl-features article,
.luvelink-landing .wl-experience,
.luvelink-landing .wl-flow-step,
.luvelink-landing .wl-flow-panel,
.luvelink-landing .wl-final-cta {
  border-color: #f4d6df;
  background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.luvelink-landing .wl-features article::after {
  background: rgba(255,165,191,.28);
}

.luvelink-landing .wl-feature-icon,
.luvelink-landing .wl-flow-step span {
  border-color: #ffd2df;
  background: #fff0f5;
}

.luvelink-landing .wl-feature-icon::before,
.luvelink-landing .wl-feature-icon::after {
  border-color: #c80f44;
}

.luvelink-landing .icon-wallet::after,
.luvelink-landing .icon-scan::after {
  background: #c80f44;
}

.wl-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wl-screen-card {
  min-height: 248px;
  padding: 16px;
  border: 1px solid #f4d6df;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(255,41,98,.09);
  overflow: hidden;
}

.screen-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.screen-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffa5bf;
}

.wl-screen-card small {
  display: block;
  color: #c80f44;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-screen-card > strong {
  display: block;
  margin-top: 6px;
  color: #101828;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.mini-wallet,
.mini-register,
.mini-dashboard {
  margin-top: 18px;
  border-radius: 18px;
  background: #fff0f5;
}

.mini-wallet {
  padding: 14px;
}

.mini-wallet div {
  margin-bottom: 10px;
  color: #101828;
  font-size: 13px;
  font-weight: 900;
}

.mini-wallet img {
  width: 86px;
  height: 86px;
  padding: 7px;
  border-radius: 14px;
  background: #fff;
}

.mini-register {
  padding: 18px;
}

.mini-register span,
.mini-register strong {
  display: block;
}

.mini-register span {
  color: #6f7686;
  font-size: 13px;
  font-weight: 760;
}

.mini-register strong {
  margin-top: 10px;
  color: #ff2962;
  font-size: 27px;
  letter-spacing: -0.045em;
}

.mini-dashboard {
  height: 106px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 16px;
}

.mini-dashboard i {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #ff2962, #ffa5bf);
}

.luvelink-landing .wl-offer-card {
  background:
    radial-gradient(circle at 84% 26%, rgba(255,255,255,.20), transparent 26%),
    linear-gradient(135deg, #ff2962 0%, #c80f44 100%);
}

.luvelink-landing .wl-progress-dots i,
.luvelink-landing .wl-dark-btn,
.luvelink-landing .wl-final-cta a {
  background: #ff2962;
}

.luvelink-landing .wl-final-cta {
  display: block;
  min-height: auto;
}

.luvelink-landing .wl-final-cta h2 {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .luvelink-landing .wl-hero {
    grid-template-columns: 1fr;
  }

  .luvelink-landing .wl-product {
    min-height: 540px;
  }
}

@media (max-width: 980px) {
  .luvelink-landing .wl-hero-shell {
    padding: 22px 24px 60px;
    border-bottom-right-radius: 72px;
  }

  .luvelink-landing .wl-nav {
    grid-template-columns: 1fr auto;
  }

  .luvelink-landing .wl-nav nav {
    display: none;
  }

  .wl-screens {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .luvelink-landing .wl-hero-shell {
    padding: 18px 16px 44px;
    border-bottom-right-radius: 42px;
  }

  .luvelink-landing .wl-nav {
    grid-template-columns: 1fr;
  }

  .luvelink-landing .wl-nav-actions {
    justify-self: start;
    min-height: 38px;
    font-size: 10px;
  }

  .luvelink-landing .wl-hero {
    margin-top: 42px;
    gap: 28px;
  }

  .luvelink-landing .wl-copy h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .luvelink-landing .wl-product {
    min-height: auto;
    padding: 74px 0 14px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .wl-slogan-card {
    left: 0;
    top: 8px;
  }

  .wl-iphone {
    width: 208px;
    scroll-snap-align: center;
  }

  .wl-iphone-front,
  .wl-iphone-back,
  .luvelink-landing .wl-product:hover .wl-iphone-front,
  .luvelink-landing .wl-product:hover .wl-iphone-back {
    transform: none;
  }

  .luvelink-landing .wl-pass-back {
    display: block;
  }

  .luvelink-landing .wl-trust div {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .luvelink-landing .wl-copy h1 {
    font-size: 31px;
    letter-spacing: -0.035em;
  }

  .luvelink-landing .wl-copy p {
    font-size: 14.5px;
  }

  .wl-iphone {
    width: 190px;
    border-width: 8px;
    border-radius: 40px;
    padding: 11px;
  }

  .wl-island {
    top: 16px;
    width: 66px;
    height: 21px;
  }

  .wl-phone-screen {
    padding: 43px 13px 15px;
    border-radius: 30px;
  }

  .wl-iphone h2 {
    font-size: 18px;
  }

  .wl-iphone img {
    width: 92px;
    height: 92px;
    margin-top: 11px;
  }

  .wl-offer-visual {
    height: 76px;
  }

  .wl-screens {
    gap: 10px;
  }
}

/* LuveLink refinements */
.luvelink-landing .wl-product {
  align-items: center;
  perspective: 1200px;
}

.wl-iphone {
  border-color: #121826;
  background:
    linear-gradient(145deg, #272f41 0%, #0d111b 44%, #202838 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.16),
    inset 0 0 0 4px rgba(255,255,255,.035),
    0 36px 92px rgba(16,24,40,.24);
}

.wl-iphone::before,
.wl-iphone::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #252d3d, #0c111b);
  box-shadow: inset 1px 0 0 rgba(255,255,255,.18);
}

.wl-iphone::before {
  left: -11px;
  top: 94px;
  height: 78px;
}

.wl-iphone::after {
  right: -11px;
  top: 138px;
  height: 98px;
}

.wl-island {
  height: 25px;
  background:
    radial-gradient(circle at 78% 50%, #1e293b 0 4px, transparent 5px),
    #05070c;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.wl-phone-screen {
  position: relative;
  padding-top: 44px;
  border: 1px solid rgba(255,255,255,.44);
  box-shadow: inset 0 0 34px rgba(255,255,255,.28);
}

.wl-phone-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 76px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(17,24,39,.32);
}

.wl-statusbar {
  position: absolute;
  top: 13px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #101828;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.wl-iphone .wl-pass-top {
  align-items: center;
  padding-top: 8px;
}

.wl-iphone .wl-pass-top span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wl-iphone .wl-pass-top span::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 5px;
  background:
    radial-gradient(circle at 35% 38%, #ffa5bf 0 3px, transparent 4px),
    linear-gradient(135deg, #ff2962, #ffa5bf);
  box-shadow: 0 5px 12px rgba(255,41,98,.22);
}

.wl-iphone h2 {
  margin-top: 13px;
}

.wl-stamp-line {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  margin: 11px 0 0;
}

.wl-stamp-line i,
.wl-stamp-line em {
  display: block;
  aspect-ratio: 1;
  border-radius: 999px;
}

.wl-stamp-line i {
  background: #ff2962;
  box-shadow: 0 7px 14px rgba(255,41,98,.22);
}

.wl-stamp-line em {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,41,98,.16);
}

.wl-offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border: 1px solid rgba(255,41,98,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: #c80f44;
  font-size: 9.5px;
  font-weight: 900;
}

.wl-iphone-back .wl-pass-row {
  margin-top: 0;
}

.wl-iphone-back img {
  width: 98px;
  height: 98px;
  margin-top: 11px;
}

.luvelink-landing .wl-workflow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.luvelink-landing .wl-flow-step {
  min-height: 174px;
  padding: 22px;
}

.luvelink-landing .wl-flow-panel {
  grid-column: 1 / -1;
}

@media (max-width: 680px) {
  .luvelink-landing .wl-workflow {
    grid-template-columns: 1fr;
  }

  .luvelink-landing .wl-flow-panel {
    grid-column: span 1;
  }
}

/* LuveLink final responsive pass */
.luvelink-landing .wl-brand span,
.wl-slogan-card strong,
.wl-iphone .wl-pass-top span,
.luvelink-landing .wl-final-cta span {
  color: #ff2962;
}

@media (max-width: 680px) {
  .luvelink-landing {
    background: linear-gradient(180deg, #fff 0%, #fff7fa 58%, #fff 100%);
  }

  .luvelink-landing .wl-hero-shell {
    overflow: visible;
  }

  .luvelink-landing .wl-product {
    justify-content: center;
    overflow: visible;
    scroll-snap-type: none;
    width: 100%;
    min-height: 392px;
    padding: 72px 0 8px;
  }

  .luvelink-landing .wl-iphone-back {
    display: none;
  }

  .luvelink-landing .wl-iphone-front {
    width: min(214px, 72vw);
  }

  .luvelink-landing .wl-capabilities {
    display: flex;
  }

  .luvelink-landing .wl-metrics {
    grid-template-columns: 1fr;
  }

  .luvelink-landing .wl-trust {
    padding-top: 28px;
  }

  .luvelink-landing .wl-trust div {
    grid-template-columns: 1fr 1fr;
  }

  .luvelink-landing .wl-feature-grid,
  .luvelink-landing .wl-experience,
  .luvelink-landing .wl-section,
  .luvelink-landing .wl-final-cta {
    width: min(100% - 30px, 1140px);
  }
}

@media (max-width: 480px) {
  .luvelink-landing .wl-nav-actions {
    display: none;
  }

  .luvelink-landing .wl-hero {
    margin-top: 32px;
  }

  .luvelink-landing .wl-copy h1 {
    max-width: 340px;
    font-size: 30px;
    line-height: 1.07;
  }

  .luvelink-landing .wl-copy p {
    max-width: 340px;
  }

  .luvelink-landing .wl-product {
    min-height: 370px;
    padding-top: 68px;
  }

  .luvelink-landing .wl-trust p,
  .luvelink-landing .wl-feature-head h2,
  .luvelink-landing .wl-experience-copy h2,
  .luvelink-landing .wl-section-copy h2,
  .luvelink-landing .wl-final-cta h2 {
    text-wrap: balance;
  }

  .luvelink-landing .wl-trust div span:nth-child(n+5) {
    display: none;
  }

  .luvelink-landing .wl-features article:nth-child(n+4) {
    display: none;
  }

  .luvelink-landing .wl-screens article:nth-child(n+3) {
    display: none;
  }
}

/* LuveLink final conversion sizing */
.wl-iphone {
  width: clamp(184px, 15.5vw, 210px);
  padding: 10px;
  border-width: 7px;
  border-radius: 38px;
}

.wl-phone-screen {
  border-radius: 28px;
  padding: 40px 13px 16px;
}

.wl-island {
  top: 15px;
  width: 64px;
  height: 21px;
}

.wl-iphone h2 {
  font-size: 18px;
}

.wl-iphone .wl-pass-grid {
  gap: 5px;
}

.wl-iphone .wl-pass-grid div,
.wl-iphone .wl-pass-row {
  padding: 6px;
  border-radius: 10px;
}

.wl-iphone img {
  width: 96px;
  height: 96px;
  margin-top: 10px;
}

.wl-offer-visual {
  height: 76px;
}

/* LuveLink phone screen polish */
.wl-card-hero {
  position: relative;
  margin: 0 0 10px;
  padding: 12px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 22%, rgba(255,255,255,.44), transparent 24%),
    linear-gradient(135deg, #ff2962 0%, #ffa5bf 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255,41,98,.20);
}

.wl-card-hero::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 76px;
  height: 76px;
  border: 10px solid rgba(255,255,255,.30);
  border-radius: 999px;
}

.wl-card-hero span,
.wl-card-hero strong {
  position: relative;
  z-index: 1;
  display: block;
}

.wl-card-hero span {
  color: rgba(255,255,255,.78);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-card-hero strong {
  margin-top: 4px;
  font-size: 20px;
  letter-spacing: -0.045em;
}

.wl-iphone-front .wl-pass-grid {
  grid-template-columns: 1fr 1fr;
}

.wl-iphone-front .wl-pass-grid div:nth-child(n+3) {
  display: none;
}

.wl-iphone-front img {
  margin-top: 12px;
  border: 1px solid rgba(255,41,98,.12);
}

.wl-offer-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 24%, rgba(255,255,255,.70) 0 13px, transparent 14px),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.32), transparent 28%),
    linear-gradient(135deg, #101828 0%, #ff2962 58%, #ffa5bf 100%);
}

.wl-offer-visual::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border: 12px solid rgba(255,255,255,.22);
  border-radius: 999px;
}

.wl-offer-visual span,
.wl-offer-visual strong {
  position: relative;
  z-index: 1;
  display: block;
}

.wl-offer-visual span {
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.wl-offer-visual strong {
  margin-top: 2px;
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 850;
}

@media (max-width: 680px) {
  .wl-card-hero {
    padding: 9px;
    border-radius: 14px;
  }

  .wl-card-hero strong {
    font-size: 16px;
  }
}

.luvelink-landing .wl-product {
  min-height: 470px;
  padding-top: 64px;
}

@media (max-width: 680px) {
  .luvelink-landing .wl-hero-shell {
    padding: 16px 16px 30px;
    border-bottom-right-radius: 30px;
  }

  .luvelink-landing .wl-brand img {
    width: 38px;
    height: 38px;
  }

  .luvelink-landing .wl-brand {
    font-size: 21px;
  }

  .luvelink-landing .wl-kicker {
    font-size: 9.5px;
    padding: 6px 9px;
  }

  .luvelink-landing .wl-copy h1 {
    max-width: 330px;
    margin: 15px 0 10px;
    font-size: 29px;
    line-height: 1.04;
  }

  .luvelink-landing .wl-copy p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.42;
  }

  .luvelink-landing .wl-capabilities {
    gap: 7px;
    margin-top: 14px;
  }

  .luvelink-landing .wl-capabilities span {
    min-height: 27px;
    padding: 0 9px;
    font-size: 9.5px;
  }

  .luvelink-landing .wl-metrics {
    display: flex;
    gap: 8px;
    overflow: visible;
    margin-top: 16px;
  }

  .luvelink-landing .wl-metrics div {
    flex: 1;
    min-width: 0;
    padding: 10px;
    border-radius: 13px;
  }

  .luvelink-landing .wl-metrics strong {
    font-size: 16px;
  }

  .luvelink-landing .wl-metrics span {
    font-size: 9.5px;
    line-height: 1.18;
  }

  .luvelink-landing .wl-product {
    min-height: 318px;
    padding: 52px 0 0;
  }

  .wl-slogan-card {
    width: min(230px, 86vw);
    padding: 11px 13px;
    border-radius: 15px;
  }

  .wl-slogan-card strong {
    font-size: 13px;
  }

  .wl-slogan-card span {
    font-size: 10.5px;
  }

  .luvelink-landing .wl-iphone-front {
    width: min(168px, 54vw);
  }

  .wl-iphone {
    padding: 8px;
    border-width: 6px;
    border-radius: 32px;
  }

  .wl-phone-screen {
    padding: 34px 10px 13px;
    border-radius: 24px;
  }

  .wl-island {
    top: 13px;
    width: 54px;
    height: 18px;
  }

  .wl-statusbar {
    top: 10px;
    left: 13px;
    right: 13px;
    font-size: 7.5px;
  }

  .wl-iphone .wl-pass-top {
    padding-top: 5px;
    font-size: 8px;
  }

  .wl-iphone .wl-pass-top span::before {
    width: 11px;
    height: 11px;
    border-radius: 4px;
  }

  .wl-iphone h2 {
    margin: 9px 0 8px;
    font-size: 14.5px;
  }

  .wl-iphone .wl-pass-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .wl-iphone .wl-pass-grid div {
    padding: 5px;
  }

  .wl-iphone .wl-pass-grid span {
    font-size: 5.8px;
  }

  .wl-iphone .wl-pass-grid strong {
    font-size: 7px;
  }

  .wl-stamp-line {
    gap: 3px;
    margin-top: 8px;
  }

  .wl-iphone img {
    width: 70px;
    height: 70px;
    padding: 6px;
    margin-top: 8px;
    border-radius: 12px;
  }

  .wl-iphone small {
    font-size: 7.5px;
  }

  .luvelink-landing .wl-trust {
    padding: 22px 16px 12px;
  }

  .luvelink-landing .wl-trust p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.3;
  }

  .luvelink-landing .wl-trust span {
    font-size: 13px;
  }

  .luvelink-landing .wl-feature-grid {
    padding-top: 28px;
  }

  .luvelink-landing .wl-feature-head h2,
  .luvelink-landing .wl-experience-copy h2,
  .luvelink-landing .wl-section-copy h2 {
    font-size: 23px;
    line-height: 1.08;
  }

  .luvelink-landing .wl-features article {
    padding: 15px;
  }

  .luvelink-landing .wl-experience,
  .luvelink-landing .wl-section,
  .luvelink-landing .wl-final-cta {
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .luvelink-landing .wl-copy h1 {
    font-size: 27px;
  }

  .luvelink-landing .wl-copy p {
    font-size: 13.5px;
  }

  .luvelink-landing .wl-product {
    min-height: 300px;
  }

  .luvelink-landing .wl-iphone-front {
    width: min(158px, 52vw);
  }

  .luvelink-landing .wl-features article:nth-child(n+3),
  .luvelink-landing .wl-flow-panel,
  .luvelink-landing .wl-final-cta p {
    display: none;
  }
}

/* LuveLink final iPhone realism + mobile conversion cut */
.wl-iphone {
  padding: 5px;
  border-width: 3px;
  border-color: #141a26;
  border-radius: 34px;
  background:
    linear-gradient(145deg, #303848 0%, #10151f 42%, #252d3b 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.24),
    inset 0 0 0 3px rgba(0,0,0,.22),
    0 30px 72px rgba(16,24,40,.22);
}

.wl-iphone::before,
.wl-iphone::after {
  width: 2px;
  background: #151b26;
}

.wl-iphone::before {
  left: -5px;
  top: 84px;
  height: 62px;
}

.wl-iphone::after {
  right: -5px;
  top: 126px;
  height: 78px;
}

.wl-phone-screen {
  border-radius: 29px;
  border: 1px solid rgba(255,255,255,.32);
}

.wl-island {
  top: 12px;
  width: 58px;
  height: 19px;
}

@media (max-width: 680px) {
  .wl-iphone {
    padding: 4px;
    border-width: 2px;
    border-radius: 29px;
  }

  .wl-phone-screen {
    border-radius: 25px;
  }

  .wl-iphone::before,
  .wl-iphone::after {
    display: none;
  }

  .luvelink-landing .wl-trust,
  .luvelink-landing .wl-experience,
  .luvelink-landing .wl-section {
    display: none;
  }

  .luvelink-landing .wl-feature-grid {
    padding: 24px 0 8px;
  }

  .luvelink-landing .wl-feature-head {
    margin-bottom: 14px;
  }

  .luvelink-landing .wl-feature-head h2 {
    font-size: 22px;
  }

  .luvelink-landing .wl-final-cta {
    margin-top: 20px;
    margin-bottom: 34px;
    padding: 20px 18px;
  }
}

@media (max-width: 480px) {
  .luvelink-landing .wl-hero-shell {
    padding-bottom: 24px;
  }

  .luvelink-landing .wl-product {
    min-height: 276px;
  }

  .luvelink-landing .wl-iphone-front {
    width: min(146px, 48vw);
  }

  .wl-phone-screen {
    padding: 31px 9px 12px;
  }

  .wl-island {
    top: 11px;
    width: 48px;
    height: 16px;
  }

  .wl-iphone h2 {
    font-size: 13.5px;
  }

  .wl-iphone img {
    width: 62px;
    height: 62px;
  }
}

/* =========================================================================
   LuveLink hero card mockups — deux DA de cartes, deux types de fidélité.
   Isolé du reste pour ne pas impacter les vraies cartes client/admin.
   ========================================================================= */
.luvelink-landing .wl-product {
  gap: clamp(16px, 2.7vw, 28px);
  min-height: 520px;
}

.luvelink-landing .wl-product::before {
  inset: 74px 8px 48px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,.24), transparent 24%),
    linear-gradient(135deg, rgba(255,41,98,.98), rgba(255,165,191,.76));
}

.wl-card-mockup {
  width: clamp(218px, 18vw, 248px);
  padding: 5px;
  border: 3px solid #111827;
  border-radius: 38px;
}

.wl-card-mockup .wl-phone-screen {
  padding: 38px 10px 12px;
  background: #f8fafc;
}

.wl-card-mockup-passage .wl-phone-screen {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,41,98,.32), transparent 30%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.wl-card-mockup-montant .wl-phone-screen {
  background:
    radial-gradient(circle at 18% 8%, rgba(255,165,191,.42), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff4f8 100%);
}

.wl-demo-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 22px 54px rgba(17,24,39,.22);
}

.wl-demo-card > * {
  position: relative;
  z-index: 1;
}

.dark-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,0) 36%),
    radial-gradient(circle at 80% 16%, rgba(255,41,98,.72), transparent 27%),
    linear-gradient(145deg, #111827 0%, #1f2937 48%, #ff2962 100%);
}

.dark-card .demo-card-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .28;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.light-card {
  color: #101828;
  background:
    radial-gradient(circle at 82% 14%, rgba(255,41,98,.16), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff2f7 100%);
  border: 1px solid rgba(255,41,98,.14);
}

.demo-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.demo-card-head span,
.demo-card-head strong,
.demo-card-head small {
  display: block;
}

.demo-card-head span,
.demo-card-grid span,
.demo-card-bottom span,
.demo-reward-card span,
.demo-amount-hero span {
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dark-card .demo-card-head span,
.dark-card .demo-card-grid span,
.dark-card .demo-card-bottom span {
  color: rgba(255,255,255,.62);
}

.light-card .demo-card-head span,
.light-card .demo-card-bottom span,
.demo-reward-card span,
.demo-amount-hero span {
  color: #c80f44;
}

.demo-card-head strong {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.demo-card-head small {
  flex: 0 0 auto;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.light-card .demo-card-head small {
  background: #fff0f5;
  color: #c80f44;
}

.demo-card-photo,
.demo-amount-hero {
  margin-top: 14px;
  border-radius: 20px;
}

.demo-card-photo {
  height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 13px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.90) 0 13px, transparent 14px),
    radial-gradient(circle at 68% 35%, rgba(255,255,255,.34) 0 24px, transparent 25px),
    linear-gradient(135deg, #ff2962 0%, #ffa5bf 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}

.demo-card-photo span {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.055em;
}

.demo-card-photo strong {
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.demo-card-grid div,
.demo-reward-card {
  padding: 8px;
  border-radius: 13px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.14);
}

.demo-card-grid strong,
.demo-card-bottom strong,
.demo-reward-card strong {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.1;
}

.demo-stamps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  margin-top: 11px;
}

.demo-stamps i,
.demo-stamps em {
  display: block;
  aspect-ratio: 1;
  border-radius: 999px;
}

.demo-stamps i {
  background: #fff;
  box-shadow: 0 8px 14px rgba(0,0,0,.16);
}

.demo-stamps i::after {
  content: "";
  display: block;
  width: 36%;
  height: 36%;
  margin: 32% auto;
  border-radius: 999px;
  background: #ff2962;
}

.demo-stamps em {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
}

.demo-amount-hero {
  padding: 14px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.55), transparent 26%),
    linear-gradient(135deg, #ff2962 0%, #ffa5bf 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255,41,98,.18);
}

.demo-amount-hero strong {
  display: block;
  margin-top: 4px;
  font-size: 30px;
  line-height: .95;
  letter-spacing: -.06em;
}

.demo-amount-hero small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 850;
}

.demo-progress {
  margin-top: 12px;
}

.demo-progress div {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,41,98,.12);
  overflow: hidden;
}

.demo-progress div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff2962, #ffa5bf);
}

.demo-progress small {
  display: block;
  margin-top: 7px;
  color: #697386;
  font-size: 9px;
  font-weight: 850;
}

.demo-reward-card {
  margin-top: 11px;
  background: #fff;
  border-color: rgba(255,41,98,.12);
  box-shadow: 0 12px 28px rgba(255,41,98,.08);
}

.demo-reward-card strong {
  color: #101828;
  font-size: 11px;
}

.demo-card-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.demo-card-bottom img {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  margin: 0;
  padding: 7px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17,24,39,.14);
}

.demo-card-bottom small {
  display: block;
  margin-top: 4px;
  color: inherit;
  opacity: .58;
  text-align: left;
  font-size: 8px;
}

.light-card .demo-card-bottom {
  padding-top: 2px;
}

@media (max-width: 680px) {
  .luvelink-landing .wl-product {
    min-height: 354px;
    padding-top: 62px;
  }

  .luvelink-landing .wl-card-mockup-montant {
    display: none;
  }

  .wl-card-mockup {
    width: min(172px, 54vw);
  }

  .wl-card-mockup .wl-phone-screen {
    padding: 31px 8px 10px;
  }

  .wl-demo-card {
    padding: 10px;
    border-radius: 20px;
  }

  .demo-card-photo {
    height: 64px;
    padding: 10px;
  }

  .demo-card-photo span {
    font-size: 19px;
  }

  .demo-card-bottom img {
    width: 58px;
    height: 58px;
    padding: 5px;
    border-radius: 11px;
  }
}

/* Hero realistic wallet cards from admin/reglages references */
.luvelink-landing .wl-product {
  min-height: 560px;
}

.luvelink-landing .wl-card-mockup {
  width: clamp(224px, 18vw, 258px);
  aspect-ratio: 71.6 / 147.6;
  padding: 4px;
  border-width: 3px;
  border-radius: 38px;
}

.luvelink-landing .wl-card-mockup .wl-island {
  display: none;
}

.luvelink-landing .wl-card-mockup .wl-phone-screen {
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
}

.luvelink-landing .wl-card-mockup .wl-phone-screen::after {
  display: none;
}

.wallet-real-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  padding: 22px 16px 15px;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}

.wallet-real-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
}

.wallet-real-card > * {
  position: relative;
  z-index: 1;
}

.wallet-real-card-pink {
  background: #ff77a0;
}

.wallet-real-card-pink::before {
  content: "♥ ♥ ♥ ♥ ♥\A♥ ♥ ♥ ♥ ♥\A♥ ♥ ♥ ♥ ♥\A♥ ♥ ♥ ♥ ♥\A♥ ♥ ♥ ♥ ♥\A♥ ♥ ♥ ♥ ♥\A♥ ♥ ♥ ♥ ♥";
  white-space: pre;
  color: rgba(255,255,255,.36);
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 9px;
  transform: translate(-5px, -8px);
}

.wallet-real-card-black {
  background: #030303;
}

.wallet-real-card-black::before {
  content: "✦ ✦ ✦ ✦\A✦ ✦ ✦ ✦\A✦ ✦ ✦ ✦\A✦ ✦ ✦ ✦\A✦ ✦ ✦ ✦\A✦ ✦ ✦ ✦";
  white-space: pre;
  color: rgba(255,255,255,.12);
  font-size: 44px;
  line-height: 1.34;
  letter-spacing: 13px;
  transform: translate(-10px, -9px);
}

.real-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.real-card-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.real-card-brand strong {
  display: block;
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .04em;
  white-space: nowrap;
}

.real-card-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 16px;
  flex: 0 0 auto;
  color: #ff2962;
  font-size: 7px;
  font-weight: 950;
  transform: rotate(-8deg);
  filter: drop-shadow(0 0 1px #fff);
}

.real-card-logo-block {
  width: 28px;
  height: 23px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #fff;
}

.real-card-type {
  flex: 0 0 auto;
  text-align: right;
  text-transform: uppercase;
}

.real-card-type strong,
.real-card-type span {
  display: block;
  color: #fff;
  font-weight: 950;
  letter-spacing: .08em;
}

.real-card-type strong {
  font-size: 10px;
  line-height: 1.05;
}

.real-card-type span {
  margin-top: 3px;
  font-size: 8.5px;
  opacity: .86;
}

.real-card-greeting {
  margin-top: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 880;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.real-card-band {
  height: 72px;
  margin: 17px -16px 0;
  display: grid;
  place-items: center;
  background: #ff2962;
}

.real-card-band span {
  color: #ffa5bf;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -.09em;
  transform: rotate(6deg);
  text-shadow:
    -2px -2px 0 #ffa5bf,
    2px -2px 0 #ffa5bf,
    -2px 2px 0 #ffa5bf,
    2px 2px 0 #ffa5bf;
}

.real-stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 9px;
  margin-top: 16px;
}

.real-stamps i,
.real-stamps em {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 999px;
}

.real-stamps i {
  border: 3px solid #fff;
  background: rgba(255,255,255,.18);
  box-shadow: 0 5px 0 rgba(255,255,255,.34);
}

.real-stamps i span {
  color: #ff2962;
  font-size: 6px;
  font-weight: 950;
  transform: rotate(8deg);
}

.real-stamps em {
  border: 2.5px dashed rgba(255,255,255,.58);
  background: rgba(255,255,255,.08);
}

.real-points-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  color: #fff;
}

.real-points-row span {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.real-points-row strong {
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.real-points-row small {
  font-size: 15px;
  opacity: .72;
}

.real-qr-wrap {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.real-qr-wrap img {
  width: 112px;
  height: 112px;
  margin: 0;
  padding: 10px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.real-card-code {
  margin-top: 9px;
  color: #687083;
  text-align: center;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
}

.real-next-tier {
  margin-top: 8px;
  color: rgba(255,255,255,.9);
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
}

.real-photo-placeholder {
  height: 102px;
  display: grid;
  place-items: center;
}

.real-photo-placeholder span {
  width: 24px;
  height: 20px;
  border: 4px solid rgba(255,255,255,.36);
  border-radius: 5px;
  position: relative;
}

.real-photo-placeholder span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 11px;
  height: 7px;
  transform: translateX(-50%);
  border: 4px solid rgba(255,255,255,.36);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.real-photo-placeholder span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(255,255,255,.36);
  border-radius: 999px;
}

.real-progress-bar {
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

.real-progress-bar span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.wallet-real-card-black .real-points-row {
  margin-top: 16px;
}

.wallet-real-card-black .real-card-code {
  color: #697184;
}

@media (max-width: 680px) {
  .luvelink-landing .wl-product {
    min-height: 358px;
    padding-top: 62px;
  }

  .luvelink-landing .wl-card-mockup {
    width: min(176px, 55vw);
  }

  .wallet-real-card {
    padding: 16px 11px 11px;
    border-radius: 24px;
  }

  .real-card-brand strong {
    font-size: 10px;
  }

  .real-card-type strong {
    font-size: 7px;
  }

  .real-card-type span {
    font-size: 6.5px;
  }

  .real-card-greeting {
    margin-top: 13px;
    font-size: 11px;
  }

  .real-card-band {
    height: 52px;
    margin: 12px -11px 0;
  }

  .real-card-band span {
    font-size: 26px;
  }

  .real-stamps {
    gap: 7px;
    margin-top: 12px;
  }

  .real-points-row {
    margin-top: 13px;
  }

  .real-points-row span {
    font-size: 8px;
  }

  .real-points-row strong {
    font-size: 15px;
  }

  .real-qr-wrap img {
    width: 76px;
    height: 76px;
    padding: 7px;
    border-radius: 12px;
  }

  .real-card-code {
    font-size: 8px;
  }

  .real-next-tier {
    font-size: 9px;
  }
}

/* Landing exported card renders */
.luvelink-landing .wl-card-mockup {
  width: clamp(270px, 21vw, 330px);
  aspect-ratio: 240 / 495;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.luvelink-landing .wl-card-mockup::before,
.luvelink-landing .wl-card-mockup::after {
  display: none;
}

.luvelink-landing .wl-card-mockup .wl-phone-screen {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.luvelink-landing .wl-card-mockup .wl-phone-screen::after,
.luvelink-landing .wl-card-mockup .wl-island {
  display: none;
}

.luvelink-landing .wallet-card-render {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 28px 54px rgba(16,24,40,.18));
}

@media (max-width: 680px) {
  .luvelink-landing .wl-card-mockup {
    width: min(210px, 64vw);
  }

  .luvelink-landing .wallet-card-render {
    border-radius: 0;
  }
}

/* Landing contact + Calendly */
.luvelink-landing .wl-final-cta {
  display: block;
  min-height: auto;
  padding: 38px;
}

.wl-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 36px;
  width: 100%;
  align-items: stretch;
}

.wl-contact-info {
  min-width: 0;
}

.wl-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  max-width: 430px;
}

.wl-contact-form input,
.wl-contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e7cfc7;
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font: inherit;
  font-size: 14.5px;
  resize: vertical;
}

.wl-contact-form input::placeholder,
.wl-contact-form textarea::placeholder {
  color: var(--muted);
}

.wl-contact-form input:focus,
.wl-contact-form textarea:focus {
  outline: none;
  border-color: #ff2962;
  box-shadow: 0 0 0 3px rgba(255,41,98,.14);
}

.wl-contact-calendly {
  min-height: 640px;
  overflow: hidden;
  border: 1px solid #ead9d2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(17,24,39,.08);
}

@media (max-width: 900px) {
  .wl-contact-grid {
    grid-template-columns: 1fr;
  }

  .wl-contact-calendly {
    min-height: 580px;
  }
}

@media (max-width: 680px) {
  .luvelink-landing .wl-final-cta {
    padding: 22px 18px;
  }

  .wl-contact-calendly {
    min-height: 520px;
  }
}

/* Transparent landing card exports: no decorative backing rectangle. */
.luvelink-landing .wl-product {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.luvelink-landing .wl-product::before,
.luvelink-landing .wl-product::after {
  display: none !important;
  content: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  inset: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.luvelink-landing .wl-card-mockup,
.luvelink-landing .wl-card-mockup .wl-phone-screen,
.luvelink-landing .wallet-card-render {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Landing nav CTA: keep the wrapper invisible and style only the link. */
.luvelink-landing .wl-nav-actions {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: 0 !important;
}

.luvelink-landing .wl-nav-actions > a.wl-demo-btn,
.luvelink-landing .wl-nav-actions > a.wl-demo-btn:first-child {
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid rgba(255,41,98,.34);
  border-radius: 999px;
  background: #fff;
  color: #101828;
  box-shadow: 0 18px 42px rgba(255,41,98,.16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.luvelink-landing .wl-nav-actions > a.wl-login-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  color: #101828;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.luvelink-landing .wl-nav-actions > a.wl-login-btn:hover {
  color: #ff2962;
}

.luvelink-landing .wl-nav-actions > a.wl-demo-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,41,98,.58);
  background: #fff8fb;
  box-shadow: 0 22px 52px rgba(255,41,98,.22);
}

@media (max-width: 680px) {
  .luvelink-landing .wl-nav-actions {
    justify-self: start;
  }

  .luvelink-landing .wl-nav-actions > a.wl-demo-btn,
  .luvelink-landing .wl-nav-actions > a.wl-demo-btn:first-child {
    min-height: 40px;
    padding: 0 16px;
    font-size: 11px;
  }
}

/* Landing feature cards: sharper copy support and cleaner CSS icons. */
.luvelink-landing .wl-feature-grid {
  padding-top: 64px;
}

.luvelink-landing .wl-feature-head {
  max-width: 720px;
}

.luvelink-landing .wl-feature-head h2 {
  max-width: 680px;
}

.luvelink-landing .wl-features article {
  min-height: 184px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,248,251,.96) 100%);
}

.luvelink-landing .wl-features article::after {
  right: -34px;
  top: -34px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(255,41,98,.15), rgba(255,165,191,0) 70%);
}

.luvelink-landing .wl-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255,255,255,.9) 0 7px, transparent 8px),
    linear-gradient(135deg, #ff2962 0%, #ffa5bf 100%);
  border: 0;
  box-shadow: 0 16px 34px rgba(255,41,98,.20);
}

.luvelink-landing .wl-feature-icon::before,
.luvelink-landing .wl-feature-icon::after {
  border-color: #fff;
}

.luvelink-landing .icon-qr::before {
  width: 23px;
  height: 23px;
  border: 3px solid #fff;
  border-radius: 7px;
  box-shadow:
    inset 0 0 0 5px rgba(255,255,255,.22),
    9px 9px 0 -6px #fff,
    -9px 9px 0 -6px #fff;
}

.luvelink-landing .icon-wallet::before {
  width: 25px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 7px;
}

.luvelink-landing .icon-wallet::after {
  right: 10px;
  top: 21px;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 999px;
}

.luvelink-landing .icon-scan::before {
  width: 26px;
  height: 26px;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 10px;
}

.luvelink-landing .icon-scan::after {
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
}

.luvelink-landing .icon-crm::before {
  width: 22px;
  height: 15px;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 9px 9px;
  transform: translateY(4px);
}

.luvelink-landing .icon-crm::after {
  left: 14px;
  top: 12px;
  width: 20px;
  height: 10px;
  border: 3px solid #fff;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  transform: none;
}

.luvelink-landing .wl-features h3 {
  margin-top: 20px;
  font-size: 18px;
}

.luvelink-landing .wl-features p {
  max-width: 210px;
  color: #667085;
  font-size: 14px;
}

.luvelink-landing .wl-contact-calendly {
  min-height: 700px;
}

.luvelink-landing .calendly-inline-widget {
  min-width: 280px;
  width: 100%;
  height: 700px;
}

.luvelink-landing #luvelink-calendly {
  min-width: 280px;
  width: 100%;
  height: 700px;
}

@media (max-width: 900px) {
  .luvelink-landing .wl-contact-calendly {
    min-height: 640px;
  }

  .luvelink-landing .calendly-inline-widget {
    height: 640px;
  }
}

@media (max-width: 680px) {
  .luvelink-landing .wl-feature-grid {
    padding-top: 42px;
  }

  .luvelink-landing .wl-features article {
    min-height: 158px;
    padding: 18px;
  }

  .luvelink-landing .wl-feature-icon {
    width: 42px;
    height: 42px;
  }

  .luvelink-landing .wl-contact-calendly {
    min-height: 600px;
  }

  .luvelink-landing .calendly-inline-widget {
    height: 600px;
  }
}

/* Final landing polish: premium motion, SVG icons and game changers. */
@keyframes wl-soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes wl-sheen {
  0% { transform: translateX(-120%) rotate(12deg); }
  100% { transform: translateX(160%) rotate(12deg); }
}

.luvelink-landing .wl-primary,
.luvelink-landing .wl-demo-btn,
.luvelink-landing .wl-dark-btn {
  position: relative;
  overflow: hidden;
}

.luvelink-landing .wl-primary::after,
.luvelink-landing .wl-demo-btn::after,
.luvelink-landing .wl-dark-btn::after {
  content: "";
  position: absolute;
  top: -45%;
  left: 0;
  width: 34%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  opacity: 0;
  pointer-events: none;
}

.luvelink-landing .wl-primary:hover::after,
.luvelink-landing .wl-demo-btn:hover::after,
.luvelink-landing .wl-dark-btn:hover::after {
  opacity: 1;
  animation: wl-sheen .72s ease;
}

.luvelink-landing .wl-slogan-card {
  animation: wl-soft-float 5.2s ease-in-out infinite;
}

.luvelink-landing .wl-card-mockup {
  transition: transform .34s cubic-bezier(.2,.8,.2,1), filter .34s ease;
}

.luvelink-landing .wl-product:hover .wl-card-mockup {
  filter: saturate(1.04) contrast(1.02);
}

.luvelink-landing .wl-features article,
.luvelink-landing .wl-screen-card,
.luvelink-landing .wl-flow-step,
.luvelink-landing .wl-flow-panel,
.luvelink-landing .wl-gamechangers article {
  transition: transform .24s cubic-bezier(.2,.8,.2,1), box-shadow .24s ease, border-color .24s ease;
}

.luvelink-landing .wl-features article:hover,
.luvelink-landing .wl-screen-card:hover,
.luvelink-landing .wl-flow-step:hover,
.luvelink-landing .wl-gamechangers article:hover {
  transform: translateY(-6px);
  border-color: rgba(255,41,98,.32);
  box-shadow: 0 28px 74px rgba(17,24,39,.10), 0 18px 44px rgba(255,41,98,.10);
}

.luvelink-landing .wl-feature-icon::before,
.luvelink-landing .wl-feature-icon::after {
  display: none !important;
}

.luvelink-landing .wl-feature-icon {
  overflow: hidden;
}

.luvelink-landing .wl-feature-icon svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  fill: #fff;
  filter: drop-shadow(0 5px 10px rgba(141,12,50,.18));
}

.luvelink-landing .wl-feature-icon::marker {
  display: none;
}

.luvelink-landing .wl-feature-icon {
  isolation: isolate;
}

.luvelink-landing .wl-feature-icon svg path {
  vector-effect: non-scaling-stroke;
}

.wl-gamechangers {
  width: min(1140px, calc(100% - 56px));
  margin: 42px auto 26px;
  padding: 34px;
  border: 1px solid #f4d6df;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,41,98,.12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,246,249,.96));
  box-shadow: 0 28px 80px rgba(17,24,39,.075);
  overflow: hidden;
  position: relative;
}

.wl-gamechangers::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,41,98,.045) 1px, transparent 1px),
    linear-gradient(rgba(255,41,98,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.wl-game-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.wl-game-head span {
  color: #c80f44;
  font-size: 11.5px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-game-head h2 {
  max-width: 560px;
  margin: 0;
  color: #101828;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.wl-game-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wl-game-grid article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(255,41,98,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 48px rgba(17,24,39,.065);
  backdrop-filter: blur(14px);
}

.wl-game-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2962, #ffa5bf);
  box-shadow: 0 10px 22px rgba(255,41,98,.18);
}

.wl-game-grid strong {
  display: block;
  color: #101828;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.wl-game-grid p {
  margin: 9px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.48;
}

@media (max-width: 900px) {
  .wl-game-head {
    display: block;
  }

  .wl-game-head h2 {
    margin-top: 10px;
  }

  .wl-game-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wl-gamechangers {
    width: min(100% - 32px, 540px);
    margin-top: 28px;
    padding: 22px;
    border-radius: 24px;
  }

  .wl-game-grid article {
    min-height: auto;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .luvelink-landing *,
  .luvelink-landing *::before,
  .luvelink-landing *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Premium landing pass: restrained motion and LuveLink palette only. */
.luvelink-landing {
  --ll-primary: #ff2962;
  --ll-soft: #ffa5bf;
  --ll-white: #fff;
}

.luvelink-landing .wl-kicker,
.luvelink-landing .wl-feature-head span,
.luvelink-landing .wl-experience-copy span,
.luvelink-landing .wl-final-cta span,
.luvelink-landing .wl-game-head span,
.luvelink-landing .wl-slogan-card strong,
.luvelink-landing .wl-slogan-card span {
  color: var(--ll-primary) !important;
}

.luvelink-landing .wl-primary,
.luvelink-landing .wl-dark-btn,
.luvelink-landing .wl-flow-step span,
.luvelink-landing .wl-game-grid article::before {
  background: linear-gradient(135deg, var(--ll-primary) 0%, var(--ll-soft) 100%) !important;
}

.luvelink-landing .wl-flow-step span {
  color: var(--ll-white) !important;
}

.luvelink-landing .wl-demo-btn {
  border-color: rgba(255,41,98,.28) !important;
  background: var(--ll-white) !important;
}

.luvelink-landing .wl-primary::after,
.luvelink-landing .wl-demo-btn::after,
.luvelink-landing .wl-dark-btn::after {
  display: none !important;
}

.luvelink-landing .wl-slogan-card {
  animation: wl-soft-float 8s ease-in-out infinite;
}

.luvelink-landing .wl-features article,
.luvelink-landing .wl-screen-card,
.luvelink-landing .wl-flow-step,
.luvelink-landing .wl-game-grid article {
  transform: translateZ(0);
  transition:
    transform .22s cubic-bezier(.22,1,.36,1),
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.luvelink-landing .wl-features article:hover,
.luvelink-landing .wl-screen-card:hover,
.luvelink-landing .wl-flow-step:hover,
.luvelink-landing .wl-game-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255,41,98,.24);
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 58px rgba(16,24,40,.075);
}

.luvelink-landing .wl-feature-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,41,98,.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,41,98,.96) 0%, rgba(255,165,191,.96) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.30),
    0 16px 36px rgba(255,41,98,.16);
}

.luvelink-landing .wl-feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--ll-white);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.wl-gamechangers {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,250,252,.96) 100%) !important;
  box-shadow: 0 24px 70px rgba(16,24,40,.07);
}

.wl-gamechangers::before {
  background:
    linear-gradient(90deg, rgba(255,41,98,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,165,191,.045) 1px, transparent 1px);
  opacity: .8;
}

.wl-game-head {
  display: block;
}

.wl-game-head h2 {
  max-width: none;
  width: max-content;
  white-space: nowrap;
  margin-top: 10px;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: 0;
}

.wl-game-grid article {
  border-color: rgba(255,41,98,.14);
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 42px rgba(16,24,40,.055);
}

@media (max-width: 900px) {
  .wl-game-head h2 {
    width: auto;
    white-space: normal;
  }
}

/* SaaS proof, audience, access and FAQ sections. */
.wl-audience,
.wl-access,
.wl-proof,
.wl-faq {
  width: min(1140px, calc(100% - 56px));
  margin: 34px auto;
}

.wl-audience {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.wl-audience-copy,
.wl-access,
.wl-faq {
  border: 1px solid rgba(255,41,98,.16);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,252,.96));
  box-shadow: 0 24px 70px rgba(16,24,40,.06);
}

.wl-audience-copy {
  padding: 30px;
}

.wl-audience-copy span,
.wl-access-head span,
.wl-faq-head span {
  color: #ff2962;
  font-size: 11.5px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-audience-copy h2,
.wl-access-head h2,
.wl-faq-head h2 {
  margin: 12px 0 0;
  color: #101828;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.wl-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wl-audience-grid article,
.wl-proof-grid article {
  padding: 22px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 46px rgba(16,24,40,.05);
}

.wl-audience-grid strong,
.wl-proof-grid strong {
  display: block;
  color: #101828;
  font-size: 17px;
  letter-spacing: 0;
}

.wl-audience-grid p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.48;
}

.wl-access {
  padding: 34px;
}

.wl-access-head {
  max-width: 680px;
}

.wl-access-head p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.5;
}

.wl-access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.wl-access-grid a {
  display: block;
  min-height: 188px;
  padding: 22px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16,24,40,.055);
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s ease, border-color .22s ease;
}

.wl-access-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,41,98,.28);
  box-shadow: 0 22px 58px rgba(16,24,40,.075);
}

.wl-access-grid small {
  color: #ff2962;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-access-grid strong {
  display: block;
  margin-top: 16px;
  color: #101828;
  font-size: 19px;
}

.wl-access-grid span {
  display: block;
  margin-top: 10px;
  color: #667085;
  font-size: 13.5px;
  line-height: 1.45;
}

.wl-demo-strip {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff2962, #ffa5bf);
  color: #fff;
}

.wl-demo-strip strong,
.wl-demo-strip span,
.wl-demo-strip a {
  color: #fff;
}

.wl-demo-strip span {
  opacity: .88;
  font-size: 14px;
}

.wl-demo-strip a {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.wl-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wl-proof-grid span {
  display: block;
  margin-bottom: 12px;
  color: #ff2962;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-faq {
  padding: 34px;
}

.wl-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.wl-faq-list details {
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 18px;
  background: #fff;
  padding: 18px 20px;
}

.wl-faq-list summary {
  cursor: pointer;
  color: #101828;
  font-weight: 850;
}

.wl-faq-list p {
  margin: 10px 0 0;
  color: #667085;
  line-height: 1.48;
}

@media (max-width: 980px) {
  .wl-audience,
  .wl-access,
  .wl-proof,
  .wl-faq {
    width: min(100% - 48px, 720px);
  }

  .wl-audience {
    grid-template-columns: 1fr;
  }

  .wl-audience-grid,
  .wl-access-grid,
  .wl-proof-grid {
    grid-template-columns: 1fr;
  }

  .wl-demo-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wl-audience,
  .wl-access,
  .wl-proof,
  .wl-faq {
    width: min(100% - 32px, 540px);
    margin: 24px auto;
  }

  .wl-audience-copy,
  .wl-access,
  .wl-faq {
    padding: 22px;
    border-radius: 24px;
  }
}

/* Public login/signup hub. */
.ll-auth-page {
  min-height: 100vh;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(320px, .75fr);
  gap: 24px;
  align-items: center;
}

.ll-auth-brand {
  position: fixed;
  top: 28px;
  left: max(28px, calc((100vw - 1180px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff2962;
  font-size: 24px;
  font-weight: 950;
}

.ll-auth-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ll-auth-card,
.ll-auth-side {
  border: 1px solid rgba(255,41,98,.16);
  border-radius: 32px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 82px rgba(16,24,40,.08);
  padding: 34px;
}

.ll-auth-side {
  background:
    radial-gradient(circle at 90% 12%, rgba(255,165,191,.24), transparent 32%),
    linear-gradient(180deg, #fff, #fff8fb);
}

.ll-auth-kicker,
.ll-auth-side span {
  color: #ff2962;
  font-size: 11.5px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ll-auth-card h1,
.ll-auth-side h2 {
  margin: 12px 0;
  color: #101828;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.ll-auth-side h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.ll-auth-card p,
.ll-auth-side p,
.ll-auth-form em {
  color: #667085;
  line-height: 1.5;
}

.ll-auth-form {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.ll-auth-form label span {
  display: block;
  margin-bottom: 7px;
  color: #101828;
  font-size: 13px;
  font-weight: 850;
}

.ll-auth-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,41,98,.18);
  border-radius: 16px;
  padding: 0 15px;
  background: #fff;
  color: #101828;
  font: inherit;
}

.ll-auth-form input[type="color"] {
  height: 52px;
  padding: 6px;
}

.ll-color-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ll-auth-form em {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-style: normal;
}

.ll-form-note {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 16px;
  background: #fff8fb;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

.ll-auth-form button,
.ll-auth-side a,
.ll-success-actions a,
.ll-upgrade-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2962, #ffa5bf);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ll-test-session {
  display: inline-flex;
  margin-top: 14px;
  color: #ff2962;
  font-weight: 900;
}

.ll-view-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.ll-view-switch a {
  padding: 14px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 18px;
  background: #fff;
}

.ll-view-switch small,
.ll-view-switch strong {
  display: block;
}

.ll-view-switch small {
  color: #ff2962;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ll-view-switch strong {
  margin-top: 5px;
  color: #101828;
}

.ll-login-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.ll-login-grid a {
  display: block;
  padding: 20px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 20px;
  background: #fff;
}

.ll-login-grid small {
  color: #ff2962;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ll-login-grid strong,
.ll-login-grid span,
.ll-success-panel strong,
.ll-success-panel span {
  display: block;
}

.ll-login-grid strong {
  margin-top: 8px;
  color: #101828;
  font-size: 19px;
}

.ll-login-grid span {
  margin-top: 5px;
  color: #667085;
}

.ll-success-panel {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255,41,98,.18);
  border-radius: 22px;
  background: #fff8fb;
}

.ll-resume-panel {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16,24,40,.06);
}

.ll-resume-panel > strong,
.ll-resume-panel > span {
  display: block;
}

.ll-resume-panel > strong {
  color: #101828;
  font-size: 15px;
  font-weight: 950;
}

.ll-resume-panel > span {
  color: #667085;
  font-size: 13px;
}

.ll-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.ll-upgrade-link {
  width: fit-content;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .ll-auth-page {
    grid-template-columns: 1fr;
    padding-top: 98px;
  }
}

@media (max-width: 680px) {
  .ll-auth-page {
    width: min(100% - 32px, 540px);
  }

  .ll-auth-card,
  .ll-auth-side {
    padding: 24px;
    border-radius: 26px;
  }
}

/* Final feature cleanup: no pink halo behind feature cards. */
.luvelink-landing .wl-features article::after {
  display: none !important;
  content: none !important;
}

/* Clean auth/test flow: centered, lightweight and mobile-first. */
.ll-auth-page--single {
  width: min(100% - 40px, 520px);
  grid-template-columns: 1fr;
  justify-items: stretch;
  align-content: center;
  gap: 0;
}

.ll-auth-page--single .ll-auth-card {
  width: 100%;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,252,.94)),
    #fff;
  box-shadow: 0 26px 80px rgba(16,24,40,.10), 0 1px 0 rgba(255,255,255,.85) inset;
}

.ll-auth-page--single .ll-auth-card h1 {
  max-width: 420px;
  margin: 12px 0 10px;
  font-size: clamp(30px, 5vw, 44px);
}

.ll-auth-page--single .ll-auth-card p {
  max-width: 430px;
  margin: 0;
  font-size: 15px;
}

/* Connexion unifiée (/login.php) : logo + nom repris tels quels de la page d'accueil
   (même classe .wl-brand), mais centrés en haut de la carte plutôt qu'en pastille
   flottante au-dessus — évite le grand vide entre le logo et la carte. */
.ll-auth-card-centered {
  text-align: center;
}

.ll-auth-card-centered .ll-auth-card-brand,
.ll-auth-card-centered .ll-auth-kicker,
.ll-auth-card-centered > h1,
.ll-auth-card-centered > p {
  margin-left: auto;
  margin-right: auto;
}

.ll-auth-card-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  text-decoration: none;
}

.ll-auth-card-centered .ll-auth-form {
  text-align: left;
}

.ll-auth-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,41,98,.12);
}

.ll-auth-foot span {
  color: #667085;
  font-size: 13px;
  font-weight: 750;
}

.ll-auth-foot-center {
  justify-content: center;
}

.ll-auth-foot-link {
  color: #ff2962;
  font-size: 13.5px;
  font-weight: 800;
}

.ll-auth-foot-link:hover {
  text-decoration: underline;
}

.ll-test-session {
  margin-top: 0;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,41,98,.18);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(255,41,98,.10);
}

.ll-view-menu {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 18px;
  background: #fff;
}

.ll-view-menu > span {
  display: block;
  margin: 0 0 8px;
  color: #667085;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ll-view-menu nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ll-view-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: #fff2f6;
  color: #101828;
  font-size: 13px;
  font-weight: 900;
}

.ll-locked-note {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 18px;
  background: #101828;
}

.ll-locked-note strong,
.ll-locked-note span {
  color: #fff;
}

.ll-locked-note span {
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.45;
}

.ll-auth-page--single .ll-success-actions {
  display: none;
}

.ll-auth-page--single .ll-upgrade-link {
  width: 100%;
}

@media (max-width: 680px) {
  .ll-auth-page--single {
    min-height: 100svh;
    width: min(100% - 24px, 440px);
    padding: 86px 0 24px;
    align-content: start;
  }

  .ll-auth-brand {
    top: 18px;
    left: 16px;
    font-size: 20px;
  }

  .ll-auth-brand img {
    width: 34px;
    height: 34px;
  }

  .ll-auth-page--single .ll-auth-card {
    padding: 22px;
    border-radius: 22px;
  }

  .ll-auth-page--single .ll-auth-card h1 {
    font-size: 30px;
    line-height: 1.04;
  }

  .ll-auth-page--single .ll-auth-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .ll-auth-form {
    gap: 11px;
    margin-top: 18px;
  }

  .ll-auth-form input {
    min-height: 46px;
    border-radius: 14px;
  }

  .ll-color-row {
    grid-template-columns: 1fr;
  }

  .ll-auth-foot {
    display: grid;
    justify-items: start;
  }

  .ll-test-session,
  .ll-auth-form button {
    width: 100%;
  }

  .ll-view-menu nav {
    grid-template-columns: 1fr;
  }
}

/* Final auth polish. */
.ll-auth-screen {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(255,41,98,.10), transparent 34%),
    linear-gradient(180deg, #fff, #fff8fb 55%, #fff);
}

.ll-auth-screen::before {
  opacity: .35;
  background-size: 54px 54px;
}

.ll-auth-screen .ll-auth-page--single {
  min-height: 100vh;
  padding-top: 96px;
}

/* login.php n'a pas de logo flottant séparé (il est dans la carte, voir
   .ll-auth-card-brand) — pas besoin de réserver de place en haut pour lui. */
.ll-auth-screen .ll-auth-page--brand-inline {
  padding-top: 0;
}

.ll-auth-screen .ll-auth-brand {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 13px;
  border: 1px solid rgba(255,41,98,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 46px rgba(16,24,40,.08);
  backdrop-filter: blur(14px);
}

.ll-auth-screen .ll-auth-card {
  border-color: rgba(255,41,98,.12);
  box-shadow: 0 30px 90px rgba(16,24,40,.12);
}

.ll-auth-screen .ll-auth-card h1 {
  font-size: clamp(28px, 4vw, 40px);
}

.ll-auth-screen .ll-auth-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 999px;
  background: #fff5f8;
}

.ll-auth-screen .ll-form-note {
  padding: 11px 13px;
  border-style: dashed;
}

.ll-auth-screen .ll-success-panel {
  background: #fff;
}

.ll-auth-screen .ll-view-menu {
  padding: 12px;
}

.ll-auth-screen .ll-view-menu a {
  background: #101828;
  color: #fff;
}

.ll-auth-screen .ll-view-menu a:hover {
  background: #ff2962;
}

.ll-auth-screen .ll-locked-note {
  background:
    radial-gradient(circle at 100% 0, rgba(255,165,191,.22), transparent 34%),
    #101828;
}

@media (max-width: 680px) {
  .ll-auth-screen .ll-auth-page--single {
    padding-top: 82px;
  }

  .ll-auth-screen .ll-auth-brand {
    top: 16px;
    font-size: 18px;
  }

  .ll-auth-screen .ll-auth-card h1 {
    font-size: 27px;
  }

  .ll-auth-screen .ll-view-menu nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ll-auth-screen .ll-view-menu a {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }
}

/* Public pages, footer and simplified CTA. */
.wl-page-nav {
  width: min(1180px, calc(100% - 48px));
  margin: 24px auto 0;
}

.wl-page-main {
  width: min(1180px, calc(100% - 48px));
  margin: 54px auto 0;
}

.wl-test-cta {
  width: min(1120px, calc(100% - 48px));
  margin: 44px auto;
  padding: 42px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,165,191,.22), transparent 34%),
    linear-gradient(180deg, #fff, #fff8fb);
  box-shadow: 0 24px 70px rgba(16,24,40,.07);
  text-align: center;
}

.wl-test-cta span,
.wl-example-copy span,
.wl-simple-page span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-test-cta h2 {
  max-width: 720px;
  margin: 12px auto;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.wl-test-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.wl-example-copy h1,
.wl-contact-info h1,
.wl-simple-page h1,
.wl-page-faq h1 {
  margin: 12px 0 16px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.wl-example-copy p,
.wl-simple-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.wl-contact-page {
  margin-top: 20px;
}

.wl-simple-page {
  max-width: 780px;
  min-height: 48vh;
  padding: 44px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(16,24,40,.08);
}

/* Pages légales : plus larges (texte long-form), avec de vraies sections titrées. */
.wl-legal-page {
  max-width: 880px;
  margin: 0 auto;
}

.wl-legal-intro {
  font-size: 16px;
  color: var(--muted);
  border-bottom: 1px solid rgba(17,24,39,.08);
  padding-bottom: 24px;
  margin-bottom: 8px;
}

.wl-legal-body h2 {
  margin: 32px 0 12px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
}

.wl-legal-body h2:first-child { margin-top: 8px; }

.wl-legal-body p {
  color: #3a4150;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.wl-legal-body ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #3a4150;
  font-size: 14.5px;
  line-height: 1.7;
}

.wl-legal-body li { margin-bottom: 4px; }

.wl-legal-body strong { color: var(--ink); }

.wl-legal-body a { color: var(--red); font-weight: 700; }

.wl-legal-page > .wl-primary {
  margin-top: 28px;
}

.wl-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 70px auto 28px;
  padding: 28px;
  border: 1px solid rgba(255,41,98,.12);
  border-radius: 28px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.wl-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 22px;
  font-weight: 950;
}

.wl-footer-brand img {
  width: 34px;
  height: 34px;
}

.wl-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.wl-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.wl-footer nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.wl-footer small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 860px) {
  .wl-page-nav,
  .wl-page-main,
  .wl-test-cta,
  .wl-footer {
    width: min(100% - 28px, 560px);
  }

  .wl-test-cta,
  .wl-simple-page {
    padding: 26px;
    border-radius: 24px;
  }

  .wl-footer {
    grid-template-columns: 1fr;
  }

  .wl-footer nav {
    justify-content: flex-start;
  }
}

.luvelink-landing .wl-features article {
  box-shadow: 0 16px 46px rgba(16,24,40,.055) !important;
}

.luvelink-landing .wl-feature-icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.30) !important;
}

.luvelink-landing #luvelink-calendly,
.luvelink-landing .calendly-inline-widget {
  min-height: 700px;
}

.luvelink-landing .wl-contact-calendly iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
  background: #fff;
}

@media (max-width: 900px) {
  .luvelink-landing #luvelink-calendly,
  .luvelink-landing .calendly-inline-widget {
    min-height: 640px;
  }

  .luvelink-landing .wl-contact-calendly iframe {
    height: 640px;
  }
}

@media (max-width: 680px) {
  .luvelink-landing #luvelink-calendly,
  .luvelink-landing .calendly-inline-widget {
    min-height: 600px;
  }

  .luvelink-landing .wl-contact-calendly iframe {
    height: 600px;
  }
}

/* ---------- Page Tarifs ---------- */
.wl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 44px auto;
  width: min(1120px, calc(100% - 48px));
}

.wl-pricing-card {
  position: relative;
  padding: 32px 26px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 60px rgba(16,24,40,.08);
  display: flex;
  flex-direction: column;
}

.wl-pricing-card-highlight {
  border-color: var(--red);
  box-shadow: 0 28px 74px rgba(255,41,98,.22);
  transform: translateY(-6px);
}

.wl-pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
}

.wl-pricing-card h3 {
  margin: 6px 0 4px;
  color: var(--ink);
  font-size: 22px;
}

.wl-pricing-price {
  color: var(--red);
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 18px;
}

.wl-pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.wl-pricing-features li {
  padding: 7px 0;
  font-size: 13.5px;
  border-top: 1px solid rgba(17,24,39,.06);
}
.wl-pricing-features li:first-child { border-top: none; }

.wl-pricing-feature-on { color: var(--ink); font-weight: 600; }
.wl-pricing-feature-off { color: var(--muted); }

.wl-pricing-cta {
  width: 100%;
  min-height: 48px;
  font-size: 14.5px;
}

@media (max-width: 900px) {
  .wl-pricing-grid { grid-template-columns: 1fr; }
  .wl-pricing-card-highlight { transform: none; }
}

/* ---------- Page Exemple : tour "3 rôles" ---------- */
.wl-tour {
  width: min(1120px, calc(100% - 48px));
  margin: 56px auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.wl-tour-row {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.wl-tour-row-reverse { direction: rtl; }
.wl-tour-row-reverse > * { direction: ltr; }

.wl-tour-copy span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-tour-copy h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}

.wl-tour-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.wl-tour-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.wl-tour-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 650;
}

.wl-tour-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 950;
}

.wl-tour-shot {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,41,98,.14);
  box-shadow: 0 28px 70px rgba(16,24,40,.12);
  background: #fff;
}

.wl-tour-shot img {
  display: block;
  width: 100%;
}

.wl-tour-shot-placeholder {
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wl-tour-diff {
  width: min(1120px, calc(100% - 48px));
  margin: 20px auto 56px;
  text-align: center;
}

.wl-tour-diff h2 {
  max-width: 720px;
  margin: 0 auto 32px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
}

.wl-tour-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.wl-tour-diff-grid > div {
  padding: 22px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16,24,40,.06);
}

.wl-tour-diff-grid strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 8px;
}

.wl-tour-diff-grid span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .wl-tour-row,
  .wl-tour-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .wl-tour-diff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .wl-tour-diff-grid { grid-template-columns: 1fr; }
}

/* ---------- Page Nous contacter : promesse + étapes ---------- */
.wl-contact-promise {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto 56px;
  text-align: center;
}

.wl-contact-promise > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-contact-promise h1 {
  margin: 14px auto 18px;
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.22;
}

.wl-contact-promise > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.wl-contact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  text-align: left;
}

.wl-contact-steps > div {
  padding: 22px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16,24,40,.06);
}

.wl-contact-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

.wl-contact-steps span {
  display: block;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 6px;
}

.wl-contact-steps p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

.wl-contact-plan-note {
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255,41,98,.18);
  border-radius: 14px;
  background: #fff5f8;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 430px;
}

@media (max-width: 900px) {
  .wl-contact-steps { grid-template-columns: 1fr; }
}

/* ---------- Page FAQ ---------- */
.wl-faq2-hero {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 48px;
  text-align: center;
}

.wl-faq2-hero > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wl-faq2-hero h1 {
  margin: 14px 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.1;
}

.wl-faq2-hero p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}

.wl-faq2-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto 52px;
}

.wl-faq2-highlights > div {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,41,98,.06), rgba(255,255,255,.9));
  border: 1px solid rgba(255,41,98,.14);
  box-shadow: 0 20px 50px rgba(16,24,40,.06);
}

.wl-faq2-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ff2962, #ffa5bf);
  color: #fff;
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

.wl-faq2-highlights strong {
  display: block;
  color: var(--ink);
  font-size: 15.5px;
  margin-bottom: 6px;
}

.wl-faq2-highlights span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .wl-faq2-highlights { grid-template-columns: 1fr; }
}

.wl-faq2-group {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto 44px;
}

.wl-faq2-group h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 12.5px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.wl-faq2-group h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,41,98,.16);
}

.wl-faq2-list {
  display: grid;
  gap: 10px;
}

.wl-faq2-list details {
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 18px;
  background: #fff;
  padding: 4px 22px;
  transition: box-shadow .16s ease, border-color .16s ease;
}

.wl-faq2-list details:hover {
  border-color: rgba(255,41,98,.32);
  box-shadow: 0 12px 30px rgba(16,24,40,.06);
}

.wl-faq2-list details[open] {
  border-color: rgba(255,41,98,.4);
  box-shadow: 0 16px 40px rgba(255,41,98,.1);
}

.wl-faq2-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 15.5px;
}

.wl-faq2-list summary::-webkit-details-marker { display: none; }

.wl-faq2-toggle {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff5f8;
}

.wl-faq2-toggle::before,
.wl-faq2-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform .18s ease;
}

.wl-faq2-toggle::before { width: 10px; height: 2px; }
.wl-faq2-toggle::after { width: 2px; height: 10px; }

details[open] .wl-faq2-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.wl-faq2-list p {
  margin: 0 0 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(17,24,39,.06);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.wl-faq2-list p:has(+ ul) {
  margin-bottom: 8px;
}

.wl-faq2-list ul {
  margin: 0 0 20px;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.wl-faq2-list ul li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.wl-faq2-list ul li::marker {
  color: #ff2962;
}

@media (max-width: 640px) {
  .wl-faq2-list summary { font-size: 14.5px; }
}

/* ---------- Espace prospect (compte gratuit avant conversion) ---------- */
.prospect-preview {
  margin-top: 4px;
}

.prospect-preview-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pv-primary), var(--pv-secondary));
  box-shadow: 0 16px 40px rgba(16,24,40,.14);
}

.prospect-preview-card strong {
  color: #fff;
  font-size: 17px;
}

.prospect-preview-card span {
  color: rgba(255,255,255,.88);
  font-size: 12.5px;
  line-height: 1.5;
}

.prospect-status-note {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 18px;
  background: #101828;
}

.prospect-status-note strong { color: #fff; font-size: 14px; }
.prospect-status-note span { color: rgba(255,255,255,.74); font-size: 13px; line-height: 1.45; }

.prospect-thread {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  max-height: 280px;
  overflow-y: auto;
}

.prospect-msg {
  padding: 11px 14px;
  border-radius: 14px;
  background: #f8f5f3;
}

.prospect-msg-team {
  background: #fff5f8;
  border: 1px solid rgba(255,41,98,.14);
}

.prospect-msg span {
  display: block;
  color: #667085;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 3px;
}

.prospect-msg p {
  margin: 0;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
}

.prospect-forgot-toggle {
  margin-top: 14px;
}

.prospect-forgot-toggle summary {
  cursor: pointer;
  color: #667085;
  font-size: 12.5px;
  font-weight: 750;
}

.prospect-tabs {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  padding: 4px;
  border-radius: 14px;
  background: #f8f5f3;
}

.prospect-tab-btn {
  flex: 1;
  padding: 9px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #667085;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.prospect-tab-btn.active {
  background: #fff;
  color: #101828;
  box-shadow: 0 6px 16px rgba(16,24,40,.08);
}

.prospect-tab-panel {
  margin-top: 14px;
}

/* ---------- Dashboard prospect (espace-prospect.php, connecté) ---------- */
.prospect-dash {
  width: min(720px, calc(100% - 48px));
  margin: 24px auto 60px;
  padding: 30px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(16,24,40,.08);
}

.prospect-dash-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(17,24,39,.07);
}

.prospect-dash-logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pv-primary, #ff2962), var(--pv-secondary, #ffa5bf));
  box-shadow: 0 14px 30px rgba(16,24,40,.14);
}

.prospect-dash-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prospect-dash-logo span {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.prospect-dash-head-copy h1 {
  margin: 4px 0 6px;
  color: var(--ink);
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.15;
}

.prospect-dash-head-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 480px;
}

.prospect-dash-status {
  display: inline-flex;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.prospect-dash-status-pending { background: #fff5f8; color: #ff2962; }
.prospect-dash-status-contacted { background: #eef4ff; color: #2f5fdb; }
.prospect-dash-status-converted { background: #ecfdf3; color: #12b76a; }

.prospect-logo-field {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17,24,39,.07);
}

.prospect-logo-preview {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f5f3;
  border: 1px solid rgba(17,24,39,.08);
}

.prospect-logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prospect-logo-preview span {
  color: #98a2b3;
  font-size: 22px;
  font-weight: 900;
}

.prospect-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}

.prospect-field-grid label,
.prospect-settings-form > .ll-color-row label {
  display: grid;
  gap: 6px;
}

.prospect-field-grid label span,
.prospect-settings-form .ll-color-row label span {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 800;
}

.prospect-field-grid input,
.prospect-field-grid select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #e7cfc7;
  border-radius: 13px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
}

.prospect-field-grid input:disabled {
  background: #f8f5f3;
  color: var(--muted);
}

.prospect-settings-form .ll-color-row {
  margin-top: 10px;
}

.prospect-settings-form button[type="submit"] {
  margin-top: 18px;
}

@media (max-width: 620px) {
  .prospect-dash { padding: 22px; }
  .prospect-field-grid { grid-template-columns: 1fr; }
  .prospect-dash-head { flex-direction: column; align-items: flex-start; }
}

/* Page d'accueil publique d'un tenant (tenant-accueil.php) — même famille visuelle que
   les autres pages publiques (.wl-*), mais montre la marque du CLIENT, pas LuveLink. */
.ll-tenant-hero {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 44px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(16,24,40,.08);
  text-align: center;
}

.ll-tenant-hero h1 {
  margin: 12px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.08;
}

.ll-tenant-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  white-space: pre-line;
}

.ll-tenant-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.ll-tenant-hero-secondary {
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ll-tenant-steps {
  margin-top: 44px;
}

.ll-tenant-login-hint {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
}

.ll-tenant-login-hint p {
  color: var(--muted);
  font-size: 14px;
}

.ll-tenant-login-hint a {
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 620px) {
  .ll-tenant-hero { padding: 34px 24px; }
}

/* Page 404 (404.php) */
.ll-404-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.ll-404-card {
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 48px 40px;
  border: 1px solid rgba(255,41,98,.14);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(16,24,40,.08);
}

.ll-404-card .wl-brand {
  justify-content: center;
  margin-bottom: 28px;
}

.ll-404-code {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  opacity: .9;
  margin-bottom: 6px;
}

.ll-404-card h1 {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--ink);
}

.ll-404-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 24px;
}
