@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: #18312a;
  --lm-muted: #5c7069;
  --lm-line: #c8d9d2;
  --lm-paper: #f8fcfa;
  --lm-wash: #edf4f1;
  --lm-navy: #1f4338;
  --lm-amber: #7ec49c;
  --lm-amber-deep: #2f9e67;
  --lm-teal: #289d79;
  --lm-danger: #c0392b;
  --lm-radius: 16px;
  --lm-shadow: 0 10px 28px rgba(24, 49, 42, 0.08);
}

* { 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(720px 280px at 12% -40px, rgba(126, 196, 156, 0.22), transparent 60%),
    radial-gradient(640px 260px at 90% 0, rgba(40, 157, 121, 0.12), transparent 55%),
    linear-gradient(180deg, #f1f5f3 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: 18px 0 36px;
}

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

html.land-azs-toplivo .lm-road {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 40px;
  height: 90px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(126, 196, 156, 0.35) 0 18px,
      transparent 18px 42px
    ),
    linear-gradient(180deg, transparent, rgba(2, 48, 71, 0.08));
  opacity: 0.45;
  transform: skewY(-2deg);
}

html.land-azs-toplivo .lm-haze {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, 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: 18px;
}

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: var(--lm-navy);
}

html.land-azs-toplivo .lm-brand small {
  display: block;
  margin-top: 2px;
  color: var(--lm-muted);
  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 var(--lm-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--lm-muted);
  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: 18px;
  align-items: start;
  margin-bottom: 22px;
}

html.land-azs-toplivo .lm-kicker {
  margin: 0 0 10px;
  color: var(--lm-amber-deep);
  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: var(--lm-navy);
  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 18px;
  max-width: 42ch;
  color: var(--lm-muted);
  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: 12px;
  border-left: 3px solid var(--lm-amber);
  background: rgba(255, 255, 255, 0.72);
}

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

html.land-azs-toplivo .lm-highlights span {
  display: block;
  margin-top: 2px;
  color: var(--lm-muted);
  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 var(--lm-line);
  border-radius: var(--lm-radius);
  background: var(--lm-paper);
  box-shadow: var(--lm-shadow);
}

html.land-azs-toplivo .lm-panel {
  padding: 18px;
}

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: var(--lm-navy);
}

html.land-azs-toplivo .lm-panel-head p {
  margin: 4px 0 0;
  color: var(--lm-muted);
  font-size: 0.86rem;
}

html.land-azs-toplivo .lm-step-pill {
  flex-shrink: 0;
  padding: 6px 9px;
  border-radius: 8px;
  background: #eaf7f0;
  color: #22694b;
  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: var(--lm-navy);
}

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 #c9d5df;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--lm-ink);
  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: #9eb4c4;
  transform: translateY(-1px);
}

html.land-azs-toplivo .lm-fuels button.is-active {
  border-color: var(--lm-amber-deep);
  background: linear-gradient(180deg, #f4fbf7, #e6f6ee);
  box-shadow: inset 0 0 0 1px rgba(47, 158, 103, 0.25);
}

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: var(--lm-muted);
  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 #c9d5df;
  border-radius: 12px;
  background: #fff;
  color: var(--lm-ink);
  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 #a9b9c7;
  border-radius: 10px;
  background: #fff;
  color: #35586f;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

html.land-azs-toplivo .lm-ghost.is-active {
  border-color: var(--lm-teal);
  background: #eefaf7;
  color: #17685d;
}

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: #304655;
  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 #96b4a7;
  border-radius: 5px;
  background: #fff;
  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: 12px;
  background: linear-gradient(180deg, #52b985, var(--lm-amber-deep));
  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.03); 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: var(--lm-muted);
  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: #e5ebf0;
  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: #355064;
  font-size: 0.88rem;
  line-height: 1.55;
}

html.land-azs-toplivo .lm-result-box {
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #edf8f2, #e8f5ef);
  border: 1px solid #bfd8cb;
  margin-bottom: 12px;
}

html.land-azs-toplivo .lm-result-box small {
  display: block;
  color: var(--lm-muted);
  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: var(--lm-navy);
}

html.land-azs-toplivo .lm-result-box mark {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(42, 157, 143, 0.14);
  color: #17685d;
  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 var(--lm-line);
  border-radius: var(--lm-radius);
  background: rgba(255, 255, 255, 0.8);
}

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

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: var(--lm-ink);
}

html.land-azs-toplivo .lm-how p {
  margin: 0;
  color: var(--lm-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

html.land-azs-toplivo .lm-foot-land,
html.land-azs-toplivo .lm-foot {
  color: var(--lm-muted);
  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: var(--lm-navy);
}

html.land-azs-toplivo .lm-auth > p {
  margin: 0 0 14px;
  color: var(--lm-muted);
  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: #eefaf7;
  color: #17685d;
  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 #c9d5df;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  padding: 0 10px;
  cursor: pointer;
}

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 var(--lm-line);
  border-radius: 12px;
  background: #fff;
  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: #fff;
  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: #f4f8fb; }

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; }
}
