/* Shared styles for landingv2 subpages */

/* Display face for headings + price figures; Satoshi stays the body/UI face.
 * Scoped to pages.css so the landing page (styles.css only) is unaffected. */
 :root {
  --font-display: "Cabinet Grotesk", "Satoshi", Arial, sans-serif;
}

/* One display weight across the board rather than the browser's default 700 for
 * h1-h6, so headings read as a set. Rules below may override per-case. */
.lv-contact-aside h2,
.lv-contact-form-wrap h2,
.lv-contact-map-head h2,
.lv-pricing-trust h3,
.lv-feature-block h3,
.lv-pricing-support h3,
.lv-services-nav h2,
.lv-services-section-title,
.lv-service-card h3,
.lv-modal-header h2 {
  font-weight: 700;
  letter-spacing: -0.015em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 999px;
  padding: 12px 18px;
}

.btn-ghost:hover {
  background: rgba(var(--accent-rgb), 0.08);
}

.lv-page-hero {
  padding: calc(var(--nav-h) + 56px) 0 20px;
  text-align: center;
}

.lv-page-hero .section-eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.lv-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}

.lv-page-hero .lead {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
}

/* Legal / content page cross-links */
.lv-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 28px auto 0;
  max-width: 720px;
}

.lv-legal-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--elevated-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.lv-legal-nav a:hover {
  color: var(--ink);
  border-color: rgba(var(--accent-rgb), 0.35);
  background: var(--elevated);
}

.lv-legal-nav a.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* Contact */
.lv-contact {
  padding: 8px 0 64px;
}

.lv-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.lv-contact-aside h2,
.lv-contact-form-wrap h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin: 0 0 10px;
}

.lv-contact-aside-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  max-width: 32ch;
}

.lv-contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.lv-contact-channels li {
  display: grid;
  gap: 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.lv-contact-channels li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.lv-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.lv-contact-channels a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.2s var(--ease);
}

.lv-contact-channels a:hover {
  color: var(--accent);
}

.lv-contact-channels address {
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 34ch;
}

.lv-contact-aside-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.lv-contact-text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.lv-contact-text-link:hover {
  text-decoration: underline;
}

.lv-contact-form-wrap {
  padding: clamp(8px, 1.5vw, 12px) 0;
}

.lv-contact-form {
  margin-top: 22px;
}

.lv-field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.lv-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.lv-field input,
.lv-field textarea,
.lv-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--input-bg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.lv-field input:focus,
.lv-field textarea:focus,
.lv-field select:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

.lv-field input.is-invalid,
.lv-field textarea.is-invalid,
.lv-field select.is-invalid {
  border-color: #dc2626;
}

.lv-contact-form .lv-field input,
.lv-contact-form .lv-field textarea,
.lv-contact-form .lv-field select {
  border: 0;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  padding: 12px 2px;
  background: transparent;
  box-shadow: none;
}

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

.lv-contact-form .lv-field input:focus,
.lv-contact-form .lv-field textarea:focus,
.lv-contact-form .lv-field select:focus {
  border-bottom-color: var(--accent);
  box-shadow: none;
}

.lv-contact-form .lv-field input.is-invalid,
.lv-contact-form .lv-field textarea.is-invalid,
.lv-contact-form .lv-field select.is-invalid {
  border-bottom-color: #dc2626;
}

.lv-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lv-field-hint {
  font-size: 12px;
  color: var(--muted);
}

.lv-field-hint strong,
.lv-field-error {
  color: #b91c1c;
  font-size: 12px;
}

.lv-field-error {
  display: block;
  margin: 6px 0 0;
  line-height: 1.35;
}

.lv-field-error[hidden] {
  display: none !important;
}

html[data-theme="dark"] .lv-field-error {
  color: #fca5a5;
}

.lv-input-addon {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}

.lv-input-addon input {
  border-radius: 12px 0 0 12px;
}

.lv-input-addon span {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.lv-contact-recaptcha {
  margin: 8px 0 20px;
}

.lv-contact-submit {
  width: 100%;
  max-width: 280px;
  border: 0;
  cursor: pointer;
}

.lv-contact-map-band {
  padding: 8px 0 88px;
}

.lv-contact-map-block {
  display: grid;
  gap: 16px;
}

.lv-contact-map-head {
  text-align: center;
}

.lv-contact-map-head h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin: 0 0 6px;
  line-height: 1.2;
}

.lv-contact-map-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.lv-contact-map {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--soft-2);
}

.lv-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.lv-alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 14px;
}

.lv-alert-success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.lv-alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

.lv-alert.hide,
.hide { display: none !important; }
.lv-alert.show,
.show { display: block; }

/* Pricing — dashboard-style board */
.lv-pricing {
  padding: 8px 0 90px;
}

.lv-pricing-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.2fr);
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
}

.lv-pricing-col {
  display: grid;
  gap: 16px;
}

.lv-pricing-main,
.lv-feature-block,
.lv-pricing-trust {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.04);
}

.lv-pricing-main {
  padding: 26px 22px 22px;
  display: grid;
  gap: 18px;
}

.lv-plan-picker {
  display: grid;
  gap: 16px;
}

.lv-plan-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.lv-plan-options.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv-plan-option {
  position: relative;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 14px;
  padding: 20px 6px 10px;
  display: grid;
  justify-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.lv-plan-option img {
  opacity: 0.7;
  width: 28px;
  height: 28px;
}

.lv-plan-option.is-active {
  background: var(--elevated);
  border-color: rgba(34, 197, 94, 0.22);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.lv-plan-option.is-active img {
  opacity: 1;
}

.lv-plan-tag {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #059669;
  white-space: nowrap;
}

.lv-plan-rail {
  position: relative;
  width: 82%;
  margin: 6px auto 12px;
  height: 2.5rem;
  display: flex;
  align-items: center;
  padding: 0 0.65rem;
  border-radius: 9999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.lv-plan-rail.is-three {
  width: 72%;
}

html.dark .lv-plan-rail,
[data-theme="dark"] .lv-plan-rail {
  background: rgba(15, 23, 42, 0.65);
  border-color: #334155;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.35);
}

.lv-plan-track {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  top: 50%;
  height: 8px;
  margin-top: -4px;
  border-radius: 9999px;
  background: #cbd5e1;
  z-index: 0;
  overflow: hidden;
}

.lv-plan-track::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--plan-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 55%, #4ade80 100%);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

html.dark .lv-plan-track,
[data-theme="dark"] .lv-plan-track {
  background: #475569;
}

html.dark .lv-plan-track::before,
[data-theme="dark"] .lv-plan-track::before {
  background: linear-gradient(90deg, #15803d 0%, #22c55e 50%, #86efac 100%);
  box-shadow: 0 0 14px rgba(74, 222, 128, 0.4);
}

.lv-plan-dots {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.lv-plan-dot {
  width: 0.85rem;
  height: 0.85rem;
  margin: 0;
  border-radius: 9999px;
  background: #e2e8f0;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  flex-shrink: 0;
}

html.dark .lv-plan-dot,
[data-theme="dark"] .lv-plan-dot {
  border-color: #1e293b;
  background: #64748b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.lv-plan-dot.is-filled {
  background: #22c55e;
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.22);
}

html.dark .lv-plan-dot.is-filled,
[data-theme="dark"] .lv-plan-dot.is-filled {
  background: #4ade80;
  border-color: #0f172a;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.28);
}

.lv-plan-dot.is-active {
  width: 1.35rem;
  height: 1.35rem;
  background: #22c55e;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3), 0 4px 12px rgba(34, 197, 94, 0.35);
  transform: scale(1.02);
}

html.dark .lv-plan-dot.is-active,
[data-theme="dark"] .lv-plan-dot.is-active {
  background: #4ade80;
  border-color: #0f172a;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.32), 0 4px 14px rgba(74, 222, 128, 0.35);
}

.lv-plan-slider {
  position: absolute;
  inset: 0;
  z-index: 30;
  margin: 0;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.lv-plan-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 9999px;
  background: transparent;
  outline: none;
  cursor: pointer;
  accent-color: #22c55e;
}

.lv-plan-range::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 9999px;
  background: transparent;
}

.lv-plan-range::-moz-range-track {
  height: 8px;
  border-radius: 9999px;
  background: transparent;
}

.lv-plan-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: -7px;
  border-radius: 9999px;
  border: 3px solid #fff;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28), 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: grab;
}

.lv-plan-range:active::-webkit-slider-thumb {
  cursor: grabbing;
}

.lv-plan-range::-moz-range-thumb {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  border: 3px solid #fff;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28), 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: grab;
}

.lv-price-now span {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.lv-pricing-deal {
  text-align: center;
  padding: 4px 4px 0;
}

.lv-save-line {
  margin: 0 0 12px;
}

.lv-save-pill {
  display: inline-flex;
  align-items: center;
  /* Only two flex items here: the icon and .lv-save-pill-text. Keep the label
     wrapped — loose text runs become anonymous flex items and this gap would
     then land between "80" and "%". */
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  white-space: nowrap;
  letter-spacing: 0;
  border-radius: 999px;
}


.lv-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.lv-price-was {
  font-family: var(--font-display);
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.lv-price-now {
  font-family: var(--font-display);
  color: #16a34a;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  /* Lining + tabular figures so prices stay aligned when the plan toggle swaps
   * digits, and the currency mark sits on the cap line instead of dropping. */
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  letter-spacing: -0.01em;
  line-height: 1;
}

.lv-price-now small {
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.lv-billing-line {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.lv-billing-total {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.lv-billing-total s {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.lv-billing-total strong {
  color: var(--ink);
}

.lv-buy-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--btn-fg);
  gap: 10px;
}

.lv-buy-btn:hover {
  background: var(--btn-bg-hover);
}

.lv-price-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.lv-price-note a {
  color: var(--accent);
}

.lv-cheaper-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.lv-pricing-trust {
  padding: 16px 16px 14px;
}

.lv-trust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.lv-pricing-trust h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.lv-trust-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.lv-trust-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--elevated);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}

.lv-trust-nav button:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
}

.lv-testimonial-slider {
  position: relative;
  min-height: 150px;
}

.lv-testimonial-slide {
  display: none;
}

.lv-testimonial-slide.is-active {
  display: block;
}

.lv-testi-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  overflow: hidden;
}

.lv-testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--elevated);
  box-shadow: 0 6px 16px rgba(107, 70, 255, 0.2);
  background: linear-gradient(145deg, #6b46ff, #8b6cff);
}

.lv-testi-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lv-testi-body strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 3px;
}

.lv-testi-stars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.lv-testi-stars .fa {
  margin-right: 1px;
}

.lv-testi-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  padding-right: 18px;
}

.lv-testi-quote {
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-size: 22px;
  line-height: 1;
  color: rgba(107, 70, 255, 0.35);
  pointer-events: none;
}

.lv-testi-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.lv-testi-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--accent-track);
  cursor: pointer;
}

.lv-testi-dots button.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.lv-pricing-features {
  display: grid;
  gap: 16px;
}

.lv-feature-block {
  padding: 22px 20px;
}

.lv-feature-block h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lv-feature-heading-icon {
  color: var(--accent);
  font-size: 0.9em;
}

.lv-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.lv-feature-list-premium {
  grid-template-columns: 1fr 1fr;
}

.lv-feature-list-standard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 10px;
}

.lv-feature-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.lv-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

.lv-feature-icon.tone-blue { background: rgba(59, 130, 246, 0.14); color: #2563eb; }
.lv-feature-icon.tone-green { background: rgba(16, 185, 129, 0.14); color: #059669; }
.lv-feature-icon.tone-orange { background: rgba(249, 115, 22, 0.14); color: #ea580c; }
.lv-feature-icon.tone-violet { background: rgba(107, 70, 255, 0.14); color: var(--accent); }
.lv-feature-icon.tone-cyan { background: rgba(6, 182, 212, 0.14); color: #0891b2; }
.lv-feature-icon.tone-red { background: rgba(239, 68, 68, 0.12); color: #dc2626; }
.lv-feature-icon.tone-sky { background: rgba(14, 165, 233, 0.14); color: #0284c7; }

.lv-feature-copy {
  min-width: 0;
}

.lv-feature-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-weight: 600;
}

.lv-feature-vip-note {
  display: block;
  width: 100%;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.lv-feature-vip-note a {
  color: var(--accent);
  text-decoration: underline;
}

.lv-feature-item.is-locked .lv-feature-vip-note,
.lv-feature-item.is-locked .lv-feature-vip-note a {
  color: #f43f5e;
}

.lv-tip {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  cursor: help;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.lv-tip:hover,
.lv-tip:focus {
  color: var(--accent);
  outline: none;
}

.lv-tip::before,
.lv-tip::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease);
  z-index: 20;
}

.lv-tip::after {
  content: attr(data-tip);
  bottom: calc(100% + 10px);
  width: 220px;
  max-width: min(220px, 70vw);
  padding: 9px 11px;
  border-radius: 10px;
  background: #1f2937;
  color: #fff;
  font-size: 12px;
  white-space: pre-line;
  text-align: left;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.22);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.lv-tip::before {
  content: "";
  bottom: calc(100% + 4px);
  border: 6px solid transparent;
  border-top-color: #1f2937;
}

.lv-tip:hover::before,
.lv-tip:hover::after,
.lv-tip:focus::before,
.lv-tip:focus::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.lv-feature-item.is-locked {
  opacity: 0.6;
  color: #f43f5e;
}

.lv-feature-item.is-locked .lv-feature-label {
  text-decoration: line-through;
  color: #f43f5e;
}

.lv-feature-item.is-locked .lv-feature-icon {
  filter: grayscale(1);
  opacity: 0.5;
}

.lv-feature-list-premium .lv-feature-item:nth-child(2n) .lv-tip::after,
.lv-feature-list-premium .lv-feature-item:nth-child(2n) .lv-tip::before {
  left: auto;
  right: 0;
  transform: none;
}

.lv-feature-list-premium .lv-feature-item:nth-child(2n) .lv-tip:hover::after,
.lv-feature-list-premium .lv-feature-item:nth-child(2n) .lv-tip:focus::after,
.lv-feature-list-premium .lv-feature-item:nth-child(2n) .lv-tip:hover::before,
.lv-feature-list-premium .lv-feature-item:nth-child(2n) .lv-tip:focus::before {
  transform: translateY(-2px);
}

.lv-pricing-support {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lv-pricing-support-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: min(100%, 420px);
  flex: 1;
}

.lv-support-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--elevated);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(107, 70, 255, 0.12);
}

.lv-pricing-support h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 4px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.25;
}

.lv-pricing-support p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.lv-pricing-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lv-pricing-support-actions .btn-primary {
  background: var(--accent);
  min-height: 46px;
  padding: 0 20px;
  gap: 8px;
}

.lv-pricing-support-actions .btn-ghost {
  background: var(--elevated);
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lv-empty {
  text-align: center;
  padding: 40px 20px;
  border: 1px dashed var(--line);
  border-radius: 20px;
}

.lv-empty p {
  color: var(--muted);
  margin: 0 0 16px;
}

/* Services — sidebar + card grid (old structure, v2 styling) */
.lv-services {
  padding: 8px 0 90px;
}

.lv-services-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.lv-services-nav {
  position: sticky;
  top: calc(var(--nav-h, 72px) + 16px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 14px;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.04);
}

.lv-services-nav h2 {
  margin: 0 8px 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}

.lv-services-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lv-services-cat {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lv-services-cat:hover {
  background: rgba(107, 70, 255, 0.06);
  color: var(--ink);
}

.lv-services-cat.is-active {
  background: var(--accent);
  color: #fff;
}

.lv-services-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.lv-services-section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--ink);
}

.lv-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.lv-service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.04);
}

.lv-service-card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, rgba(107, 70, 255, 0.08), rgba(17, 24, 39, 0.04));
  overflow: hidden;
}

.lv-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lv-service-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.lv-service-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.25;
}

.lv-service-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  flex: 1;
}

.lv-service-card li + li {
  margin-top: 4px;
}

.lv-service-card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.lv-service-price {
  margin: 12px 0 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.lv-service-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lv-wa-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lv-wa-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.lv-service-actions .get-started-btn {
  flex: 1;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}

.lv-service-actions .get-started-btn:hover {
  background: #5835e0;
}

.lv-services .lv-pricing-support {
  margin-top: 48px;
}

#enquiryForm .btn-primary {
  width: 100%;
  margin-top: 4px;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
}

#enquirySuccess p {
  margin: 0;
  color: #059669;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 900px) {
  .lv-services-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lv-services-nav {
    position: static;
    padding: 14px;
  }

  .lv-services-nav h2 {
    margin-bottom: 10px;
  }

  .lv-services-cats {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .lv-services-cat {
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid var(--line);
    background: var(--surface);
  }

  .lv-services-cat.is-active {
    border-color: var(--accent);
  }
}

/* Legal / long-form doc pages — editorial prose, not a card */
.lv-doc {
  padding: 12px 0 100px;
}

.lv-doc-prose,
.lv-doc-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lv-doc-prose > *:first-child,
.lv-doc-inner > *:first-child {
  margin-top: 0;
}

.lv-doc-prose h2,
.lv-doc-prose h3,
.lv-doc-prose h4,
.lv-doc-inner h2,
.lv-doc-inner h3,
.lv-doc-inner h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.lv-doc-prose h2,
.lv-doc-inner h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 44px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.lv-doc-prose h3,
.lv-doc-inner h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin: 36px 0 12px;
}

.lv-doc-prose h4,
.lv-doc-inner h4 {
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 32px 0 10px;
  line-height: 1.35;
}

.lv-doc-prose h2:first-child,
.lv-doc-prose h3:first-child,
.lv-doc-prose h4:first-child,
.lv-doc-inner h2:first-child,
.lv-doc-inner h3:first-child,
.lv-doc-inner h4:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.lv-doc-prose p,
.lv-doc-inner p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.lv-doc-prose li,
.lv-doc-inner li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 8px;
}

.lv-doc-prose li:last-child,
.lv-doc-inner li:last-child {
  margin-bottom: 0;
}

.lv-doc-prose a,
.lv-doc-inner a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.lv-doc-prose a:hover,
.lv-doc-inner a:hover {
  color: var(--accent-deep);
}

.lv-doc-prose ul,
.lv-doc-prose ol,
.lv-doc-inner ul,
.lv-doc-inner ol {
  padding-left: 1.35rem;
  margin: 0 0 20px;
}

.lv-doc-prose ol > li,
.lv-doc-inner ol > li {
  padding-left: 4px;
}

.lv-doc-prose ol > li > h4,
.lv-doc-inner ol > li > h4 {
  display: inline;
  margin: 0;
  font-size: inherit;
}

.lv-doc-prose strong,
.lv-doc-inner strong {
  color: var(--ink);
  font-weight: 700;
}

.lv-doc-prose blockquote,
.lv-doc-inner blockquote,
.lv-doc-callout {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
  border-radius: 0 12px 12px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.lv-doc-callout p:last-child {
  margin-bottom: 0;
}

.lv-doc-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px !important;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent-deep) !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.4 !important;
}

.lv-doc-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 16px;
}

.lv-doc-cta .btn-primary {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  border-radius: 10px;
}

/* FAQ accordion (Bootstrap-markup compatible, no Bootstrap JS) */
.lv-faq {
  padding: 12px 0 100px;
}

.lv-faq .accordion {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.lv-faq .accordion-item {
  background: var(--elevated-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.lv-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.04);
}

.lv-faq .accordion-header {
  margin: 0;
}

.lv-faq .accordion-button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.4;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s var(--ease);
}

.lv-faq .accordion-button:hover {
  color: var(--accent-deep);
}

.lv-faq .accordion-button::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.lv-faq .accordion-button:not(.collapsed)::after {
  content: "–";
  background: var(--accent);
  color: #fff;
}

.lv-faq .accordion-collapse {
  display: none;
}

.lv-faq .accordion-collapse.show {
  display: block;
}

.lv-faq .accordion-body {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid transparent;
}

.lv-faq .accordion-collapse.show .accordion-body {
  border-top-color: var(--line);
  padding-top: 14px;
  margin-top: -2px;
}

/* Abuse stats */
.lv-stats {
  padding: 0 0 100px;
}

.lv-stats-head {
  text-align: center;
  margin-bottom: 28px;
}

.lv-stats-head h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.lv-stats-head p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 42ch;
  font-size: 15px;
}

/* Balanced 3×2 on desktop; 2×3 tablet; 1-col mobile — no orphan card */
.lv-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.lv-stat-card {
  background: var(--elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 1px 0 var(--shadow);
}

.lv-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lv-stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .lv-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .lv-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Sitemap */
.lv-sitemap {
  padding: 12px 0 100px;
}

.lv-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--elevated-soft);
}

.lv-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.lv-table th,
.lv-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.lv-table th {
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(var(--accent-rgb), 0.05);
}

.lv-table td {
  color: var(--muted);
}

.lv-table tbody tr:hover td {
  background: rgba(var(--accent-rgb), 0.03);
}

.lv-table tr:last-child td {
  border-bottom: 0;
}

.lv-business-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.lv-business-link span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  margin-top: 3px;
}

.lv-business-link:hover {
  color: var(--accent);
}

.lv-table-empty {
  text-align: center;
  padding: 36px !important;
  color: var(--muted);
}

.lv-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.lv-pagination a,
.lv-pagination span {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.lv-pagination a:hover {
  color: var(--accent-deep);
}

.lv-pagination .is-disabled {
  color: var(--muted);
}

/* Modal / toast (grievance) */
.lv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17, 24, 39, 0.45);
  display: grid;
  place-items: center;
  padding: 20px;
}

.lv-modal[hidden] {
  display: none !important;
}

.lv-modal-dialog {
  width: min(640px, 100%);
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--elevated);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.2);
}

.lv-modal-header,
.lv-modal-footer {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.lv-modal-footer {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.lv-modal-header h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.5rem;
  padding-right: 36px;
}

.lv-modal-body {
  padding: 18px 22px;
  overflow-y: auto;
}

.lv-modal-lead {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 14px;
}

.close-modal,
.close-message {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.close-modal {
  position: absolute;
  right: 14px;
  top: 10px;
}

.lv-toast {
  position: fixed;
  /* Clear the fixed landing navbar (isolation:isolate on .page-flow traps
     in-page toasts under it unless the node is moved to <body>). */
  top: calc(var(--nav-h, 78px) + 12px);
  right: 20px;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-sizing: border-box;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 16px;
  border-radius: 12px;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.lv-toast[hidden] {
  display: none !important;
}

.lv-toast-success { background: #059669; }
.lv-toast-error { background: #dc2626; }

.lv-toast-text {
  margin: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.lv-toast .close-message {
  flex: 0 0 auto;
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff !important;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
}

.lv-toast .close-message:hover {
  opacity: 1;
}

@media (max-width: 1100px) {
  .lv-feature-list-standard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .lv-contact-layout,
  .lv-field-row,
  .lv-pricing-board,
  .lv-feature-list-premium,
  .lv-feature-list-standard {
    grid-template-columns: 1fr;
  }

  .lv-contact-aside {
    order: 2;
  }

  .lv-contact-form-wrap {
    order: 1;
  }

  .lv-contact-submit {
    max-width: none;
  }

  .lv-contact-map {
    height: 260px;
    border-radius: 16px;
  }

  .lv-plan-options,
  .lv-plan-options.is-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lv-plan-option {
    font-size: 13px;
    padding: 18px 8px 10px;
  }

  .lv-plan-tag {
    font-size: 9px;
  }

  .lv-pricing-support {
    flex-direction: column;
    align-items: stretch;
  }

  .lv-pricing-support-actions .btn-primary,
  .lv-pricing-support-actions .btn-ghost {
    flex: 1;
    justify-content: center;
  }

  .lv-legal-nav {
    gap: 6px;
    margin-top: 22px;
  }

  .lv-legal-nav a {
    padding: 7px 12px;
    font-size: 12px;
  }

  .lv-doc-prose h2,
  .lv-doc-inner h2 {
    margin-top: 36px;
    padding-top: 22px;
  }

  .lv-faq .accordion-button {
    font-size: 14.5px;
    padding: 16px 48px 16px 16px;
  }
}

@media (max-width: 560px) {
  .lv-plan-options,
  .lv-plan-options.is-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lv-plan-rail,
  .lv-plan-rail.is-three {
    width: 100%;
  }
}
