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

:root {
  --fuel-bg: #f2f6f3;
  --fuel-surface: #ffffff;
  --fuel-surface-soft: #f7fbf8;
  --fuel-text: #152d22;
  --fuel-muted: #587264;
  --fuel-line: #d8dde2;
  --fuel-primary: #2fa35b;
  --fuel-primary-strong: #237b44;
  --fuel-danger: #cb4c4c;
  --fuel-warning: #d49d33;
  --fuel-shadow: 0 14px 36px rgba(18, 37, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html.land-azs-toplivo body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--fuel-text);
  background:
    radial-gradient(900px 320px at 45% -120px, rgba(52, 171, 93, 0.16), transparent),
    var(--fuel-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

html.land-azs-toplivo .fuelux-shell {
  width: min(1160px, calc(100% - 24px));
  margin: 16px auto 26px;
}

html.land-azs-toplivo .fuelux-topbar,
html.land-azs-toplivo .fuelux-panel,
html.land-azs-toplivo .fuelux-viewport,
html.land-azs-toplivo .fuelux-auth {
  border: 1px solid var(--fuel-line);
  border-radius: 18px;
  background: var(--fuel-surface);
  box-shadow: var(--fuel-shadow);
}

html.land-azs-toplivo .fuelux-topbar {
  margin-bottom: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

html.land-azs-toplivo .fuelux-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

html.land-azs-toplivo .fuelux-brand strong {
  display: block;
  font-size: 1.06rem;
  font-weight: 800;
}

html.land-azs-toplivo .fuelux-brand p {
  margin: 2px 0 0;
  color: var(--fuel-muted);
  font-size: 0.83rem;
}

html.land-azs-toplivo .fuelux-tag {
  border: 1px solid #cce2d3;
  border-radius: 999px;
  background: #f2faf5;
  color: #2f7d4c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 10px;
  white-space: nowrap;
}

html.land-azs-toplivo .fuelux-grid {
  display: grid;
  grid-template-columns: minmax(0, 412px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

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

html.land-azs-toplivo .fuelux-panel h1 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.8vw, 1.48rem);
  line-height: 1.2;
}

html.land-azs-toplivo .fuelux-panel > p {
  margin: 0 0 14px;
  color: var(--fuel-muted);
  line-height: 1.52;
  font-size: 0.9rem;
}

html.land-azs-toplivo .fuelux-block {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--fuel-line);
  border-radius: 12px;
  background: var(--fuel-surface-soft);
}

html.land-azs-toplivo .fuelux-block h2 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

html.land-azs-toplivo .fuelux-fuel-list button {
  min-height: 42px;
  border: 1px solid #c7d9cd;
  border-radius: 10px;
  background: #fff;
  color: #224334;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s ease;
}

html.land-azs-toplivo .fuelux-fuel-list button:hover {
  border-color: #98c1a5;
}

html.land-azs-toplivo .fuelux-fuel-list button.is-active {
  border-color: var(--fuel-primary);
  background: #e9f6ed;
  box-shadow: inset 0 0 0 1px rgba(47, 163, 91, 0.2);
}

html.land-azs-toplivo .fuelux-select,
html.land-azs-toplivo .fuelux-select select {
  display: block;
  width: 100%;
}

html.land-azs-toplivo .fuelux-select select,
html.land-azs-toplivo .phone-input,
html.land-azs-toplivo .password-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c7d9cd;
  border-radius: 10px;
  background: #fff;
  color: var(--fuel-text);
  font: inherit;
  padding: 0 12px;
}

html.land-azs-toplivo .fuelux-select select:focus,
html.land-azs-toplivo .phone-input:focus,
html.land-azs-toplivo .password-input:focus {
  outline: none;
  border-color: var(--fuel-primary);
  box-shadow: 0 0 0 3px rgba(47, 163, 91, 0.2);
}

html.land-azs-toplivo .fuelux-alt-region {
  margin-top: 8px;
  border: 1px dashed #a6c4af;
  border-radius: 10px;
  min-height: 36px;
  background: #fff;
  color: #335b44;
  padding: 0 12px;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

html.land-azs-toplivo .fuelux-alt-region.is-active {
  border-color: var(--fuel-primary);
  background: #e9f6ed;
  color: var(--fuel-primary-strong);
}

html.land-azs-toplivo .fuelux-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  color: #2e4f3d;
  font-size: 0.86rem;
}

html.land-azs-toplivo .fuelux-check:last-child {
  margin-bottom: 0;
}

html.land-azs-toplivo .fuelux-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #90b5a0;
  border-radius: 4px;
  background: #fff;
  display: inline-grid;
  place-content: center;
  transition: 0.15s ease;
}

html.land-azs-toplivo .fuelux-check input::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.12s ease-in-out;
  clip-path: polygon(14% 52%, 0 66%, 40% 100%, 100% 26%, 86% 12%, 40% 68%);
  background: #fff;
}

html.land-azs-toplivo .fuelux-check input:checked {
  border-color: var(--fuel-primary-strong);
  background: var(--fuel-primary);
}

html.land-azs-toplivo .fuelux-check input:checked::before {
  transform: scale(1);
}

html.land-azs-toplivo .fuelux-main-btn {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #4ec071, #2fa35b);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(47, 163, 91, 0.28);
}

html.land-azs-toplivo .fuelux-main-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

html.land-azs-toplivo .fuelux-viewport {
  padding: 14px;
}

html.land-azs-toplivo .fuel-stage {
  display: none;
}

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

html.land-azs-toplivo .fuelux-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

html.land-azs-toplivo .fuelux-stats article {
  border: 1px solid var(--fuel-line);
  border-radius: 12px;
  background: var(--fuel-surface-soft);
  padding: 11px 12px;
}

html.land-azs-toplivo .fuelux-stats p {
  margin: 0;
  color: var(--fuel-muted);
  font-size: 0.78rem;
}

html.land-azs-toplivo .fuelux-stats h3 {
  margin: 6px 0 0;
  font-size: 1.34rem;
  line-height: 1.1;
}

html.land-azs-toplivo .fuelmap-canvas {
  position: relative;
  border: 1px solid var(--fuel-line);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(rgba(173, 188, 178, 0.2) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, rgba(173, 188, 178, 0.2) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(130deg, rgba(68, 176, 106, 0.06), rgba(68, 176, 106, 0.02)),
    #eef3ef;
}

html.land-azs-toplivo .fuelmap-svg {
  width: 100%;
  height: 240px;
  display: block;
}

html.land-azs-toplivo .fuelmap-reference {
  width: 100%;
  height: 100%;
  opacity: 0.98;
}

html.land-azs-toplivo .fuelmap-outline {
  fill: #fff;
  fill-opacity: 0;
  stroke: none;
}

html.land-azs-toplivo .fuelmap-stroke-2 {
  display: none;
}

html.land-azs-toplivo .fuelmap-dot {
  opacity: 0.9;
}

html.land-azs-toplivo .fuelmap-dot--on {
  fill: #2fb160;
}

html.land-azs-toplivo .fuelmap-dot--lim {
  fill: #ef6f80;
}

html.land-azs-toplivo .fuelux-note {
  margin: 10px 2px 0;
  color: var(--fuel-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

html.land-azs-toplivo .fuel-stage h2 {
  margin: 0 0 7px;
  font-size: 1.16rem;
}

html.land-azs-toplivo .fuelux-scan-line {
  margin: 0 0 10px;
  color: var(--fuel-muted);
  font-size: 0.88rem;
}

html.land-azs-toplivo .fuelux-progress {
  position: relative;
  height: 11px;
  border-radius: 999px;
  background: #e5eee6;
  overflow: hidden;
  margin-bottom: 12px;
}

html.land-azs-toplivo .fuelux-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #4ec071, #2fa35b);
  transition: width 0.2s ease;
}

html.land-azs-toplivo .fuelux-progress span {
  display: block;
  margin-top: 14px;
  color: var(--fuel-muted);
  font-size: 0.8rem;
  text-align: right;
}

html.land-azs-toplivo .fuelux-scan-list {
  margin: 10px 0 0;
  padding-left: 16px;
  color: #375343;
  font-size: 0.84rem;
  line-height: 1.5;
}

html.land-azs-toplivo .fuelux-result {
  border: 1px solid var(--fuel-line);
  border-radius: 14px;
  background: var(--fuel-surface-soft);
  padding: 12px;
  margin-bottom: 12px;
}

html.land-azs-toplivo .fuelux-result small {
  color: var(--fuel-muted);
  font-size: 0.76rem;
}

html.land-azs-toplivo .fuelux-result h3 {
  margin: 8px 0 4px;
  font-size: 1.42rem;
}

html.land-azs-toplivo .fuelux-result p {
  margin: 0 0 8px;
  color: #355241;
  font-size: 0.88rem;
}

html.land-azs-toplivo .fuelux-result mark {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e4f4e8;
  color: #1f7b42;
  font-size: 0.78rem;
}

html.land-azs-toplivo .fuelux-result-list {
  margin: 0 0 12px;
  padding-left: 18px;
  color: #375243;
  font-size: 0.86rem;
  line-height: 1.5;
}

html.land-azs-toplivo .az3-result-only .fuelux-grid {
  grid-template-columns: 1fr;
}

html.land-azs-toplivo .az3-result-only .fuelux-panel {
  display: none;
}

html.land-azs-toplivo .fuelux-auth {
  margin-top: 14px;
  padding: 18px;
}

html.land-azs-toplivo .fuelux-auth h2 {
  margin: 0 0 7px;
  font-size: 1.24rem;
}

html.land-azs-toplivo .fuelux-auth p {
  margin: 0 0 10px;
  color: var(--fuel-muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

html.land-azs-toplivo .az3-auth-ok {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #b8d8bf;
  background: #ebf7ee;
  color: #1e7f44;
  font-weight: 700;
  font-size: 0.8rem;
}

html.land-azs-toplivo .hidden {
  display: none !important;
}

html.land-azs-toplivo .error-msg {
  min-height: 1.2em;
  margin-bottom: 8px;
  color: var(--fuel-danger);
  font-size: 0.84rem;
}

html.land-azs-toplivo .az3-phone-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 10px;
}

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

html.land-azs-toplivo .az3-country-btn {
  min-width: 96px;
  min-height: 44px;
  border: 1px solid #c7d9cd;
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font: inherit;
}

html.land-azs-toplivo .country-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  min-width: 250px;
  max-height: 220px;
  overflow: auto;
  border: 1px solid var(--fuel-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--fuel-shadow);
  padding: 4px;
  display: none;
}

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

html.land-azs-toplivo .country-opt {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: transparent;
  min-height: 38px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  font: inherit;
  color: #294436;
  cursor: pointer;
}

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

html.land-azs-toplivo .country-opt.active,
html.land-azs-toplivo .country-opt:hover {
  background: #eef6ef;
}

html.land-azs-toplivo .otp-grid {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 10px 0;
}

html.land-azs-toplivo .otp-grid input {
  width: 42px;
  height: 48px;
  border: 1px solid #c7d9cd;
  border-radius: 10px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
}

html.land-azs-toplivo .otp-grid input:focus {
  outline: none;
  border-color: var(--fuel-primary);
  box-shadow: 0 0 0 3px rgba(47, 163, 91, 0.18);
}

html.land-azs-toplivo .az3-time {
  font-size: 0.84rem;
  color: var(--fuel-muted);
  margin-top: 8px;
}

html.land-azs-toplivo .fuelux-link {
  margin-top: 10px;
  border: none;
  background: none;
  color: #2b7f48;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

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

html.land-azs-toplivo .fuelux-success {
  text-align: center;
  padding: 18px 4px;
}

html.land-azs-toplivo .fuelux-checkmark {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #e8f6ec;
  border: 2px solid #63b47b;
  color: #2d8e4d;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  html.land-azs-toplivo .fuelux-shell {
    width: min(1160px, calc(100% - 16px));
    margin: 10px auto 20px;
  }

  html.land-azs-toplivo .fuelux-topbar {
    flex-wrap: wrap;
  }

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

  html.land-azs-toplivo .fuelux-topbar,
  html.land-azs-toplivo .fuelux-panel,
  html.land-azs-toplivo .fuelux-viewport,
  html.land-azs-toplivo .fuelux-auth {
    border-radius: 14px;
  }

  html.land-azs-toplivo .fuelmap-svg {
    height: 215px;
  }
}
