/* ============================================================
   LANDING.CSS — Workshop guides and resource landing pages
   Applies to: workshop-tuning, remote-tuning, engine-break-in, fuel-guide
   ============================================================ */

/* ── Page shell ── */
.lp-page { background: var(--color-bg); color: var(--color-text); }

.lp-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.lp-hero {
  position: relative;
  min-height: clamp(420px, 52vw, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(9,9,11,.94) 48%, rgba(9,9,11,.55) 100%);
  z-index: 1;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 72px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,128,0,.45);
  color: var(--color-accent);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.13;
  color: var(--color-text);
  margin: 0 0 22px;
  max-width: 680px;
}

.lp-hero h1 span.accent { color: var(--color-accent); }

.lp-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(250,250,250,.72);
  max-width: 560px;
  line-height: 1.75;
  margin: 0 0 36px;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Breadcrumb ── */
.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(250,250,250,.4);
  padding: 20px 24px 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lp-breadcrumb a {
  color: rgba(250,250,250,.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lp-breadcrumb a:hover { color: var(--color-accent); }
.lp-breadcrumb .sep { color: rgba(250,250,250,.22); font-size: 10px; }
.lp-breadcrumb .current { color: rgba(250,250,250,.72); }

/* ── Sections ── */
.lp-section {
  padding: 68px 0;
  border-bottom: 1px solid var(--color-border);
}

.lp-section:last-of-type { border-bottom: none; }

.lp-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
  display: block;
}

.lp-section h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 14px;
}

.lp-intro {
  font-size: 1.04rem;
  color: rgba(250,250,250,.72);
  line-height: 1.82;
  max-width: 700px;
  margin: 0 0 44px;
}

/* ── Card grid ── */
.lp-grid {
  display: grid;
  gap: 18px;
}

.lp-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.lp-grid--3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.lp-grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.lp-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.lp-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 40%, var(--color-border));
  box-shadow: var(--shadow-md);
}

.lp-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--color-accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--color-accent);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.lp-card-icon--secondary {
  background: var(--color-secondary-tint);
  color: var(--color-secondary);
}

.lp-card-icon--danger {
  background: rgba(239,68,68,.12);
  color: var(--color-danger);
}

.lp-card-icon--warning {
  background: rgba(245,158,11,.12);
  color: var(--color-warning);
}

.lp-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}

.lp-card p, .lp-card li {
  font-size: 0.875rem;
  color: rgba(250,250,250,.62);
  line-height: 1.72;
  margin: 0;
}

.lp-card ul {
  padding-left: 16px;
  margin: 8px 0 0;
}

/* ── Steps (numbered process) ── */
.lp-steps { display: flex; flex-direction: column; gap: 0; }

.lp-step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  position: relative;
}

.lp-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 58px;
  bottom: -4px;
  width: 2px;
  background: var(--color-border);
  z-index: 0;
}

.lp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--color-accent-tint);
}

.lp-step-body { padding-top: 8px; }

.lp-step-body h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
}

.lp-step-body p {
  font-size: 0.875rem;
  color: rgba(250,250,250,.62);
  line-height: 1.72;
  margin: 0;
}

/* ── Alert boxes ── */
.lp-alert {
  display: flex;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border-left: 3px solid;
  margin: 28px 0;
}

.lp-alert--danger  { background: rgba(239,68,68,.07); border-color: var(--color-danger); }
.lp-alert--warning { background: rgba(245,158,11,.07); border-color: var(--color-warning); }
.lp-alert--info    { background: var(--color-accent-tint); border-color: var(--color-accent); }
.lp-alert--success { background: rgba(34,197,94,.07); border-color: var(--color-success); }

.lp-alert-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}

.lp-alert--danger  .lp-alert-icon { color: var(--color-danger); }
.lp-alert--warning .lp-alert-icon { color: var(--color-warning); }
.lp-alert--info    .lp-alert-icon { color: var(--color-accent); }
.lp-alert--success .lp-alert-icon { color: var(--color-success); }

.lp-alert-body h4 {
  font-size: 0.93rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--color-text);
}

.lp-alert-body p {
  font-size: 0.875rem;
  margin: 0;
  color: rgba(250,250,250,.72);
  line-height: 1.68;
}

/* ── Checklist ── */
.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.lp-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(250,250,250,.78);
  line-height: 1.65;
}

.lp-checklist li::before {
  content: '';
  width: 17px;
  height: 17px;
  min-width: 17px;
  border-radius: 4px;
  margin-top: 2px;
  background-color: var(--color-secondary-tint);
  border: 1px solid rgba(160,214,52,.45);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23A0D634' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.lp-checklist--warn li::before {
  background-color: rgba(245,158,11,.12);
  border-color: rgba(245,158,11,.45);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f59e0b' d='M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

.lp-checklist--danger li::before {
  background-color: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.40);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ef4444' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16zM7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
}

/* ── Image provisions ── */
.lp-img-provision {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  position: relative;
}

.lp-img-provision img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 16px;
  color: rgba(250,250,250,.3);
  font-size: 12px;
  text-align: center;
  min-height: 180px;
}

/* Spark plug image grid — 3 equal square slots */
.lp-spark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.lp-spark-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.lp-spark-img {
  aspect-ratio: 1 / 1;
  background: var(--color-surface);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-spark-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-spark-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  color: rgba(250,250,250,.25);
  font-size: 11px;
  padding: 16px;
  text-align: center;
}

.lp-spark-placeholder i { font-size: 28px; opacity: .4; }

.lp-spark-label {
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* ── Fuel comparison table ── */
.lp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin: 32px 0;
}

.lp-fuel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  min-width: 640px;
}

.lp-fuel-table th {
  background: var(--color-surface);
  color: rgba(250,250,250,.50);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.lp-fuel-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: rgba(250,250,250,.78);
  vertical-align: top;
  line-height: 1.6;
}

.lp-fuel-table tr:last-child td { border-bottom: none; }
.lp-fuel-table tr:hover td { background: var(--color-surface); }

.lp-fuel-table .fuel-name {
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.lp-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-tag--good    { background: rgba(34,197,94,.14);  color: #4ade80; }
.lp-tag--caution { background: rgba(245,158,11,.14); color: #fbbf24; }
.lp-tag--risk    { background: rgba(239,68,68,.14);  color: #f87171; }
.lp-tag--info    { background: var(--color-accent-tint); color: var(--color-accent); }

/* ── Two-column split ── */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

@media (max-width: 820px) {
  .lp-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ── CTA banner ── */
.lp-cta {
  background: linear-gradient(130deg, var(--color-accent-tint), transparent 65%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.lp-cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 8px;
}

.lp-cta p {
  font-size: 0.93rem;
  color: rgba(250,250,250,.62);
  margin: 0;
  max-width: 480px;
  line-height: 1.72;
}

.lp-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Related guides nav ── */
.lp-related {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
}

.lp-related-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,250,.40);
  margin-bottom: 20px;
  display: block;
}

.lp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.lp-related-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.lp-related-link:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.lp-related-link .rl-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lp-related-link .rl-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.lp-related-link .rl-arrow {
  font-size: 11px;
  color: rgba(250,250,250,.30);
  margin-top: 4px;
}

/* ── Inline stat blocks ── */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 36px 0;
}

.lp-stat {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}

.lp-stat-val {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.lp-stat-desc {
  font-size: 0.78rem;
  color: rgba(250,250,250,.52);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ── Divider with label ── */
.lp-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0;
  color: rgba(250,250,250,.30);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.lp-divider::before, .lp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* ── Responsive tweaks ── */
@media (max-width: 576px) {
  .lp-hero-content { padding: 56px 16px 52px; }
  .lp-section { padding: 48px 0; }
  .lp-wrapper { padding: 0 16px; }
  .lp-cta { padding: 30px 20px; }
  .lp-spark-grid { grid-template-columns: 1fr; }
  .lp-breadcrumb { padding: 16px 16px 0; }
}

@media (max-width: 480px) {
  .lp-spark-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* ============================================================
   EXTENSIONS — Phase 2 class variants and aliases
   Camshaft-guide and valve-health templates use these names.
   Both naming conventions are now fully supported.
   ============================================================ */

/* ── Standalone card grids (no .lp-grid wrapper required) ── */
.lp-card-grid--2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.lp-card-grid--3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 18px;
}

.lp-card-grid--4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 18px;
}

/* ── Per-item checklist icons (mixed-state lists) ── */
.lp-check--ok,
.lp-check--warn,
.lp-check--danger {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(250,250,250,.78);
  line-height: 1.65;
  list-style: none;
}

.lp-check--ok::before,
.lp-check--warn::before,
.lp-check--danger::before {
  content: '';
  width: 17px;
  height: 17px;
  min-width: 17px;
  border-radius: 4px;
  margin-top: 2px;
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.lp-check--ok::before {
  background-color: var(--color-secondary-tint);
  border: 1px solid rgba(160,214,52,.45);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23A0D634' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.lp-check--warn::before {
  background-color: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.45);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f59e0b' d='M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

.lp-check--danger::before {
  background-color: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.40);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ef4444' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16zM7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
}

/* Override the default OK icon when item has an explicit variant class */
.lp-checklist .lp-check--warn::before { background-color: rgba(245,158,11,.12); border-color: rgba(245,158,11,.45); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f59e0b' d='M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E"); }
.lp-checklist .lp-check--danger::before { background-color: rgba(239,68,68,.10); border-color: rgba(239,68,68,.40); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ef4444' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16zM7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E"); }

/* ── Alert icons — direct <i> child variant (Phase 2 templates) ── */
.lp-alert > i {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.5;
  margin-top: 1px;
}

.lp-alert--danger  > i { color: var(--color-danger); }
.lp-alert--warning > i { color: var(--color-warning); }
.lp-alert--info    > i { color: var(--color-accent); }
.lp-alert--success > i { color: var(--color-success); }

/* Content div directly inside alert (no .lp-alert-body wrapper) */
.lp-alert > div {
  font-size: 0.875rem;
  color: rgba(250,250,250,.78);
  line-height: 1.68;
}

.lp-alert > div strong {
  display: block;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  font-size: 0.925rem;
}

/* ── CTA — inner content wrapper and action row ── */
.lp-cta__inner { flex: 1; max-width: 680px; }

.lp-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── Image provision ── */
.lp-img-provision__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  color: rgba(250,250,250,.28);
  font-size: 11.5px;
  text-align: center;
  line-height: 1.55;
  pointer-events: none;
}

.lp-img-provision--empty {
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,.02) 8px,
    rgba(255,255,255,.02) 16px
  );
  border-style: dashed;
  border-color: rgba(250,250,250,.12);
}

/* ── Related guide card — BEM alias of .lp-related-link ── */
.lp-related__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text);
  transition: border-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}

.lp-related__card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent-tint), var(--shadow-sm);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--color-text);
}

.lp-related__card i {
  font-size: 19px;
  color: var(--color-accent);
  flex-shrink: 0;
  opacity: .85;
  transition: opacity var(--transition-fast);
}

.lp-related__card:hover i { opacity: 1; }

/* ── Split layout — named children ── */
.lp-split__text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 14px;
}

.lp-split__text p {
  font-size: 0.9rem;
  color: rgba(250,250,250,.72);
  line-height: 1.78;
  margin-bottom: 1rem;
}

.lp-split__text p:last-child { margin-bottom: 0; }

/* ── Stats grid — BEM variant aliases ── */
.lp-stats__item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  transition: border-color var(--transition-base);
}

.lp-stats__item:hover { border-color: color-mix(in srgb, var(--color-accent) 35%, var(--color-border)); }

.lp-stats__value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.lp-stats__label {
  font-size: 0.775rem;
  color: rgba(250,250,250,.50);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ── Visual refinements ── */

/* Elevated section with surface background */
.lp-section--surface {
  background: var(--color-surface);
  border-radius: 14px;
  padding: 2.5rem;
}

/* Card left-border accent on hover */
.lp-card {
  border-left: 2px solid transparent;
  transition: border-color var(--transition-base), border-left-color var(--transition-base), box-shadow var(--transition-base);
}

.lp-card:hover {
  border-left-color: var(--color-accent);
}

/* Hero stat numbers (inline in hero section) */
.lp-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(250,250,250,.10);
}

.lp-hero-stat-val {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.lp-hero-stat-desc {
  font-size: 0.75rem;
  color: rgba(250,250,250,.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Enhanced responsive rules */
@media (max-width: 820px) {
  .lp-card-grid--2,
  .lp-card-grid--3,
  .lp-card-grid--4 {
    grid-template-columns: 1fr;
  }
  .lp-section--surface { padding: 1.75rem; border-radius: 10px; }
}

@media (max-width: 576px) {
  .lp-card-grid--2,
  .lp-card-grid--3 {
    grid-template-columns: 1fr;
  }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-stats__item { padding: 16px 12px; }
  .lp-stats__value { font-size: 1.5rem; }
  .lp-cta__actions { flex-direction: column; }
  .lp-related__card { padding: 14px 16px; }
}
