@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --lm-ink: #e8f4f0;
  --lm-muted: #9cb6ae;
  --lm-line: #28413a;
  --lm-paper: #12211d;
  --lm-wash: #0b1512;
  --lm-navy: #f0fbf6;
  --lm-amber: #49d29b;
  --lm-amber-deep: #2ea779;
  --lm-teal: #3fcda0;
  --lm-danger: #c0392b;
  --lm-radius: 20px;
  --lm-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }

html.land-azs-toplivo body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--lm-ink);
  background:
    radial-gradient(900px 360px at 0% -80px, rgba(72, 164, 123, 0.28), transparent 60%),
    radial-gradient(720px 320px at 100% 0, rgba(53, 130, 103, 0.24), transparent 62%),
    linear-gradient(180deg, #0d1916 0%, var(--lm-wash) 100%);
  -webkit-font-smoothing: antialiased;
}

html.land-azs-toplivo .view { display: none; }
html.land-azs-toplivo .view.active { display: block; }

html.land-azs-toplivo .lm-root {
  position: relative;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

html.land-azs-toplivo .lm-bg {
  position: absolute;
  inset: 0 -50px auto -50px;
  height: 440px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

html.land-azs-toplivo .lm-road {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 36px;
  height: 98px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(125, 187, 154, 0.34) 0 14px,
      transparent 14px 38px
    ),
    linear-gradient(180deg, transparent, rgba(2, 48, 71, 0.08));
  opacity: 0.38;
  transform: skewY(-2.4deg);
}

html.land-azs-toplivo .lm-haze {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, var(--lm-wash));
}

html.land-azs-toplivo .lm-nav,
html.land-azs-toplivo .lm-hero,
html.land-azs-toplivo .lm-extras,
html.land-azs-toplivo .lm-how,
html.land-azs-toplivo .lm-foot-land,
html.land-azs-toplivo .lm-auth,
html.land-azs-toplivo .lm-foot {
  position: relative;
  z-index: 1;
}

html.land-azs-toplivo .lm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

html.land-azs-toplivo .lm-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

html.land-azs-toplivo .lm-brand strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f4fffb;
}

html.land-azs-toplivo .lm-brand small {
  display: block;
  margin-top: 2px;
  color: #88a99f;
  font-size: 0.82rem;
}

html.land-azs-toplivo .lm-nav-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

html.land-azs-toplivo .lm-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border: 1px solid #355249;
  border-radius: 999px;
  background: rgba(13, 28, 23, 0.72);
  color: #9ab4ab;
  font-size: 0.78rem;
  font-weight: 600;
}

html.land-azs-toplivo .lm-chip--live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lm-teal);
  box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.5);
  animation: lmPulse 1.8s ease-out infinite;
}

@keyframes lmPulse {
  0% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(42, 157, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0); }
}

html.land-azs-toplivo .lm-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

html.land-azs-toplivo .lm-kicker {
  margin: 0 0 10px;
  color: #6be7b3;
  font-family: Outfit, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html.land-azs-toplivo .lm-hero-copy h1 {
  margin: 0 0 12px;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f2fff9;
  max-width: 14ch;
}

html.land-azs-toplivo .lm-hero-copy h1 span {
  color: var(--lm-amber-deep);
  background: none;
}

html.land-azs-toplivo .lm-lead {
  margin: 0 0 20px;
  max-width: 42ch;
  color: #a9bdb6;
  font-size: 1.02rem;
  line-height: 1.55;
}

html.land-azs-toplivo .lm-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

html.land-azs-toplivo .lm-highlights li {
  padding: 13px 12px;
  border: 1px solid #2b463e;
  border-left: 4px solid var(--lm-amber);
  border-radius: 12px;
  background: rgba(14, 29, 24, 0.74);
  backdrop-filter: blur(4px);
}

html.land-azs-toplivo .lm-highlights b {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 1.25rem;
  color: #f2fff9;
}

html.land-azs-toplivo .lm-highlights span {
  display: block;
  margin-top: 2px;
  color: #9db2ab;
  font-size: 0.8rem;
}

html.land-azs-toplivo .lm-panel,
html.land-azs-toplivo .lm-card,
html.land-azs-toplivo .lm-auth {
  border: 1px solid #2c463e;
  border-radius: var(--lm-radius);
  background: linear-gradient(180deg, rgba(18, 33, 29, 0.98), rgba(13, 24, 21, 0.98));
  box-shadow: var(--lm-shadow);
}

html.land-azs-toplivo .lm-panel {
  padding: 20px;
  border-color: #4e8f79;
  background:
    linear-gradient(180deg, rgba(25, 49, 41, 0.98), rgba(13, 24, 21, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(123, 229, 186, 0.18),
    0 0 0 1px rgba(54, 112, 90, 0.42),
    0 22px 52px rgba(0, 0, 0, 0.42);
}

html.land-azs-toplivo .lm-panel::before {
  content: "";
  display: block;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #67e2b1 0%, #3bb88a 55%, #2b8f6b 100%);
  opacity: 0.95;
}

html.land-azs-toplivo .lm-stage { display: none; }
html.land-azs-toplivo .lm-stage.is-active { display: block; }

html.land-azs-toplivo .lm-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

html.land-azs-toplivo .lm-panel-head h2 {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: 1.15rem;
  color: #f4fffb;
}

html.land-azs-toplivo .lm-panel-head p {
  margin: 4px 0 0;
  color: #96b1a9;
  font-size: 0.86rem;
}

html.land-azs-toplivo .lm-step-pill {
  flex-shrink: 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(48, 167, 121, 0.16);
  color: #7de8ba;
  font-size: 0.75rem;
  font-weight: 700;
}

html.land-azs-toplivo .lm-block { margin-bottom: 13px; }

html.land-azs-toplivo .lm-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #d9efe8;
}

html.land-azs-toplivo .lm-fuels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

html.land-azs-toplivo .lm-fuels button {
  min-height: 56px;
  border: 1px solid #355248;
  border-radius: 12px;
  background: #152a24;
  color: #deefe9;
  font: inherit;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

html.land-azs-toplivo .lm-fuels .lm-fuel-wide {
  grid-column: 1 / -1;
}

html.land-azs-toplivo .lm-fuels button:hover {
  border-color: #4d816d;
  transform: translateY(-1px);
}

html.land-azs-toplivo .lm-fuels button.is-active {
  border-color: var(--lm-amber-deep);
  background: linear-gradient(180deg, #1a3c32, #17362e);
  box-shadow: inset 0 0 0 1px rgba(73, 210, 155, 0.26);
}

html.land-azs-toplivo .lm-fuels strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 1rem;
}

html.land-azs-toplivo .lm-fuels small {
  color: #9ab6ac;
  font-size: 0.75rem;
}

html.land-azs-toplivo .lm-region-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

html.land-azs-toplivo .lm-select,
html.land-azs-toplivo .lm-select select {
  width: 100%;
}

html.land-azs-toplivo .lm-select select,
html.land-azs-toplivo .phone-input,
html.land-azs-toplivo .password-input,
html.land-azs-toplivo #lm-liters {
  width: 100%;
  min-height: 46px;
  border: 1px solid #355248;
  border-radius: 12px;
  background: #10211d;
  color: #e4f3ed;
  font: inherit;
  padding: 0 12px;
}

html.land-azs-toplivo .lm-select select:focus,
html.land-azs-toplivo .phone-input:focus,
html.land-azs-toplivo .password-input:focus,
html.land-azs-toplivo #lm-liters:focus {
  outline: none;
  border-color: var(--lm-amber-deep);
  box-shadow: 0 0 0 3px rgba(47, 158, 103, 0.22);
}

html.land-azs-toplivo .lm-near {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #c9d5df;
  border-radius: 12px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

html.land-azs-toplivo .lm-ghost {
  margin-top: 8px;
  width: 100%;
  min-height: 38px;
  border: 1px dashed #4b6e62;
  border-radius: 10px;
  background: #12251f;
  color: #8ec4af;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

html.land-azs-toplivo .lm-ghost.is-active {
  border-color: var(--lm-teal);
  background: #1a3b31;
  color: #8af0c3;
}

html.land-azs-toplivo .lm-ghost:active {
  border-color: #61d8aa;
  background: #21473a;
  color: #b5ffdd;
}

html.land-azs-toplivo .lm-checks {
  display: grid;
  gap: 8px;
}

html.land-azs-toplivo .lm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #bbd0c8;
  cursor: pointer;
}

html.land-azs-toplivo .lm-check span {
  display: block;
  line-height: 1.35;
}

html.land-azs-toplivo .lm-check input,
html.land-azs-toplivo .lm-near input {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #5c7f72;
  border-radius: 5px;
  background: #163028;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

html.land-azs-toplivo .lm-check input::after,
html.land-azs-toplivo .lm-near input::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.12s ease;
}

html.land-azs-toplivo .lm-check input:checked,
html.land-azs-toplivo .lm-near input:checked {
  border-color: var(--lm-amber-deep);
  background: var(--lm-amber-deep);
}

html.land-azs-toplivo .lm-check input:checked::after,
html.land-azs-toplivo .lm-near input:checked::after {
  transform: rotate(45deg) scale(1);
}

html.land-azs-toplivo .lm-check input:focus-visible,
html.land-azs-toplivo .lm-near input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 158, 103, 0.2);
}

html.land-azs-toplivo .lm-form-hint {
  margin: 0 0 8px;
  color: var(--lm-danger);
  font-size: 0.86rem;
}

html.land-azs-toplivo .lm-cta {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #54d8a5, #2ea779);
  color: #f4fff9;
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

html.land-azs-toplivo .lm-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
html.land-azs-toplivo .lm-cta:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

html.land-azs-toplivo .lm-fine {
  margin: 10px 0 0;
  color: #8ea9a0;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
}

html.land-azs-toplivo .lm-meter {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: #213a31;
  overflow: hidden;
  margin-bottom: 8px;
}

html.land-azs-toplivo .lm-meter i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, var(--lm-teal), var(--lm-amber-deep));
  transition: width 0.2s ease;
}

html.land-azs-toplivo .lm-meter-val {
  margin-bottom: 10px;
  text-align: right;
  color: var(--lm-muted);
  font-size: 0.8rem;
}

html.land-azs-toplivo .lm-scan-log {
  margin: 0;
  padding-left: 18px;
  color: #9fbeb2;
  font-size: 0.88rem;
  line-height: 1.55;
}

html.land-azs-toplivo .lm-result-box {
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(140deg, #132922, #19362e);
  border: 1px solid #335549;
  margin-bottom: 12px;
}

html.land-azs-toplivo .lm-result-box small {
  display: block;
  color: #93aea5;
  font-size: 0.76rem;
}

html.land-azs-toplivo .lm-result-box strong {
  display: block;
  margin: 4px 0 8px;
  font-family: Outfit, sans-serif;
  font-size: 1.55rem;
  color: #f0fff9;
}

html.land-azs-toplivo .lm-result-box mark {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(73, 210, 155, 0.16);
  color: #98f1cb;
  font-size: 0.78rem;
}

html.land-azs-toplivo .lm-points {
  margin: 0 0 12px;
  padding-left: 18px;
  color: #355064;
  font-size: 0.9rem;
  line-height: 1.5;
}

html.land-azs-toplivo .lm-save {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 8px 10px;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--lm-line);
  border-radius: 12px;
  background: #f8fafc;
}

html.land-azs-toplivo .lm-save label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--lm-navy);
}

html.land-azs-toplivo .lm-save p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--lm-muted);
  font-size: 0.88rem;
}

html.land-azs-toplivo .lm-save b { color: var(--lm-amber-deep); }

html.land-azs-toplivo .lm-extras {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

html.land-azs-toplivo .lm-card {
  padding: 16px;
}

html.land-azs-toplivo .lm-card h3 {
  margin: 0 0 10px;
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  color: var(--lm-navy);
}

html.land-azs-toplivo .lm-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3b5363;
  font-size: 0.9rem;
  line-height: 1.5;
}

html.land-azs-toplivo .lm-nets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

html.land-azs-toplivo .lm-nets span {
  padding: 5px 8px;
  border: 1px solid var(--lm-line);
  border-radius: 8px;
  background: #f7fafc;
  font-size: 0.78rem;
  font-weight: 600;
  color: #355064;
}

html.land-azs-toplivo .lm-card-note,
html.land-azs-toplivo .lm-card--tip p {
  margin: 10px 0 0;
  color: var(--lm-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

html.land-azs-toplivo .lm-card--tip {
  background: linear-gradient(160deg, #fffdf7, #fff);
  border-color: #ecd9a8;
}

html.land-azs-toplivo .lm-how {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #2d473f;
  border-radius: calc(var(--lm-radius) - 2px);
  background: rgba(16, 30, 25, 0.82);
}

html.land-azs-toplivo .lm-how h3 {
  margin: 0 0 12px;
  font-family: Outfit, sans-serif;
  color: #f0fff9;
}

html.land-azs-toplivo .lm-how ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

html.land-azs-toplivo .lm-how li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

html.land-azs-toplivo .lm-how b {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lm-navy);
  color: #fff;
  font-family: Outfit, sans-serif;
  font-size: 0.85rem;
}

html.land-azs-toplivo .lm-how strong {
  display: block;
  margin-bottom: 2px;
  color: #dff2eb;
}

html.land-azs-toplivo .lm-how p {
  margin: 0;
  color: #9ab4ab;
  font-size: 0.86rem;
  line-height: 1.4;
}

html.land-azs-toplivo .lm-foot-land,
html.land-azs-toplivo .lm-foot {
  color: #88a89c;
  font-size: 0.8rem;
  text-align: center;
}

html.land-azs-toplivo .lm-foot { margin-top: 18px; }

html.land-azs-toplivo .lm-auth {
  display: none;
  width: min(440px, 100%);
  margin: 24px auto 0;
  padding: 22px 20px;
}

html.land-azs-toplivo .lm-auth h2 {
  margin: 0 0 8px;
  font-family: Outfit, sans-serif;
  color: #f2fff9;
}

html.land-azs-toplivo .lm-auth > p {
  margin: 0 0 14px;
  color: #a2bab2;
  line-height: 1.45;
}

html.land-azs-toplivo .lm-auth-pill {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(73, 210, 155, 0.15);
  color: #88e8bf;
  font-size: 0.82rem;
  font-weight: 700;
}

html.land-azs-toplivo .lm-auth-pill.hidden { display: none; }

html.land-azs-toplivo .lm-phone-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

html.land-azs-toplivo .country-wrap { position: relative; }

html.land-azs-toplivo .lm-country-btn {
  min-height: 46px;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #3f5d52;
  border-radius: 12px;
  background: #132a23;
  color: #e1f1eb;
  font: inherit;
  padding: 0 10px;
  cursor: pointer;
}

html.land-azs-toplivo .lm-country-btn:focus-visible {
  outline: none;
  border-color: #67deb0;
  box-shadow: 0 0 0 3px rgba(103, 222, 176, 0.22);
}

html.land-azs-toplivo .country-wrap.open .lm-country-btn,
html.land-azs-toplivo .lm-country-btn:active {
  border-color: #66d6aa;
  background: #1a3b31;
  color: #c5ffdf;
}

html.land-azs-toplivo .country-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 20;
  min-width: 220px;
  display: none;
  border: 1px solid #35564a;
  border-radius: 12px;
  background: #132a23;
  box-shadow: var(--lm-shadow);
  overflow: hidden;
}

html.land-azs-toplivo .country-wrap.open .country-drop,
html.land-azs-toplivo .country-drop.open { display: block; }

html.land-azs-toplivo .country-opt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: #132a23;
  color: #d8ebe4;
  padding: 10px 12px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

html.land-azs-toplivo .country-opt:hover,
html.land-azs-toplivo .country-opt.active {
  background: #1f4337;
  color: #b8f6d7;
}

html.land-azs-toplivo .country-opt .c-cd {
  margin-left: auto;
  color: var(--lm-muted);
}

html.land-azs-toplivo .otp-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}

html.land-azs-toplivo .otp-grid input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c9d5df;
  border-radius: 10px;
  text-align: center;
  font-family: Outfit, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

html.land-azs-toplivo .error-msg {
  min-height: 0;
  margin: 0 0 10px;
  color: var(--lm-danger);
  font-size: 0.88rem;
}

html.land-azs-toplivo .lm-time {
  margin: 6px 0;
  color: var(--lm-muted);
  font-size: 0.86rem;
}

html.land-azs-toplivo .lm-link {
  display: inline-block;
  margin-top: 8px;
  border: 0;
  background: none;
  color: #1f6f8a;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

html.land-azs-toplivo .lm-link--muted { color: var(--lm-muted); }

html.land-azs-toplivo .lm-success { text-align: center; }

html.land-azs-toplivo .lm-success-check {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f8f4;
  color: var(--lm-teal);
  font-size: 1.5rem;
  font-weight: 800;
}

html.land-azs-toplivo.lm-auth-open .lm-auth { display: block; }

html.land-azs-toplivo.lm-auth-open .lm-extras,
html.land-azs-toplivo.lm-auth-open .lm-how,
html.land-azs-toplivo.lm-auth-open .lm-foot-land { display: none; }

@media (max-width: 900px) {
  html.land-azs-toplivo .lm-hero,
  html.land-azs-toplivo .lm-extras,
  html.land-azs-toplivo .lm-how ol {
    grid-template-columns: 1fr;
  }

  html.land-azs-toplivo .lm-hero-copy h1 { max-width: none; }

  html.land-azs-toplivo .lm-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  html.land-azs-toplivo .lm-root {
    width: min(100% - 16px, 1120px);
    padding-top: 12px;
  }

  html.land-azs-toplivo .lm-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  html.land-azs-toplivo .lm-region-row {
    grid-template-columns: 1fr;
  }

  html.land-azs-toplivo .lm-near { justify-content: center; }
}
