.notewall-contacts-page {
  --nw-contacts-text: #102033;
  --nw-contacts-muted: #5d6d7e;
  --nw-contacts-border: #d9e6ef;
  --nw-contacts-soft: #f7fafc;
  --nw-contacts-green: #16a34a;
  --nw-contacts-green-hover: #15803d;
  --nw-contacts-blue: #18a8df;
  --nw-contacts-blue-hover: #0e95c8;
  --nw-contacts-teal: #35abc3;
  --nw-contacts-red: #ef4444;
  color: var(--nw-contacts-text);
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 70px;
}

.notewall-contacts-page * {
  box-sizing: border-box;
}

.notewall-contacts-page a {
  color: inherit;
  text-decoration: none;
}

.notewall-contacts-page h1,
.notewall-contacts-page h2,
.notewall-contacts-page h3,
.notewall-contacts-page p {
  margin-top: 0;
}

.notewall-contacts-page .nw-contacts-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.notewall-contacts-page h1 {
  margin-bottom: 12px;
  color: var(--nw-contacts-text);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
}

.notewall-contacts-page h2 {
  margin-bottom: 0;
  color: var(--nw-contacts-text);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 760;
}

.notewall-contacts-page h3 {
  margin-bottom: 8px;
  color: var(--nw-contacts-text);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 760;
}

.notewall-contacts-page .nw-contacts-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--nw-contacts-muted);
  font-size: 18px;
  line-height: 1.5;
}

.notewall-contacts-page .nw-contacts-actions,
.notewall-contacts-page .nw-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.notewall-contacts-page .nw-contact-btn,
.notewall-contacts-page .nw-contact-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.notewall-contacts-page .nw-contact-btn:hover,
.notewall-contacts-page .nw-contact-copy:hover {
  transform: translateY(-1px);
}

.notewall-contacts-page .nw-contact-btn--primary {
  color: #fff !important;
  background: var(--nw-contacts-green);
  box-shadow: 0 10px 22px rgba(22, 163, 74, .22);
}

.notewall-contacts-page .nw-contact-btn--primary:hover {
  background: var(--nw-contacts-green-hover);
}

.notewall-contacts-page .nw-contact-btn--secondary {
  color: #fff !important;
  background: var(--nw-contacts-blue);
  box-shadow: 0 10px 22px rgba(24, 168, 223, .2);
}

.notewall-contacts-page .nw-contact-btn--secondary:hover {
  background: var(--nw-contacts-blue-hover);
}

.notewall-contacts-page .nw-contact-btn--ghost,
.notewall-contacts-page .nw-contact-copy {
  color: var(--nw-contacts-text) !important;
  background: #fff;
  border-color: var(--nw-contacts-border);
}

.notewall-contacts-page .nw-contact-btn--ghost:hover,
.notewall-contacts-page .nw-contact-copy:hover {
  border-color: #b9d6e6;
  box-shadow: 0 10px 22px rgba(16, 32, 51, .08);
}

.notewall-contacts-page .nw-contacts-section {
  margin-top: 34px;
}

.notewall-contacts-page .nw-contacts-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.notewall-contacts-page .nw-contacts-card {
  background: #fff;
  border: 1px solid var(--nw-contacts-border);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 32, 51, .07);
}

.notewall-contacts-page .nw-contacts-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.notewall-contacts-page .nw-contacts-quick-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px;
}

.notewall-contacts-page .nw-contacts-quick-card .nw-contact-copy {
  grid-column: 2;
  justify-self: start;
}

.notewall-contacts-page .nw-contacts-quick-card a {
  color: var(--nw-contacts-blue);
  font-size: 19px;
  font-weight: 800;
}

.notewall-contacts-page .nw-contacts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--nw-contacts-teal);
  background: #eef9fc;
  border: 1px solid #cdeaf2;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 800;
}

.notewall-contacts-page .nw-contacts-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.notewall-contacts-page .nw-contacts-city-card {
  padding: 26px;
}

.notewall-contacts-page .nw-city-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.notewall-contacts-page .nw-city-title-row h3 {
  margin-bottom: 0;
  font-size: 26px;
}

.notewall-contacts-page .nw-contacts-pin {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  background: #eaf8fb;
  border: 1px solid #cdeaf2;
}

.notewall-contacts-page .nw-contacts-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--nw-contacts-teal);
  box-shadow: 0 0 0 5px rgba(53, 171, 195, .18);
}

.notewall-contacts-page .nw-contacts-city-card dl {
  display: grid;
  gap: 13px;
  margin: 0 0 22px;
}

.notewall-contacts-page .nw-contacts-city-card dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
}

.notewall-contacts-page .nw-contacts-city-card dt {
  color: var(--nw-contacts-muted);
  font-size: 14px;
  font-weight: 700;
}

.notewall-contacts-page .nw-contacts-city-card dd {
  margin: 0;
  color: var(--nw-contacts-text);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

.notewall-contacts-page .nw-contacts-city-card dd a {
  color: var(--nw-contacts-blue);
}

.notewall-contacts-page .nw-contacts-map {
  position: relative;
  overflow: hidden;
  height: 260px;
  margin: 4px 0 22px;
  background: var(--nw-contacts-soft);
  border: 1px solid var(--nw-contacts-border);
  border-radius: 16px;
}

.notewall-contacts-page .nw-contacts-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.notewall-contacts-page .nw-contacts-delivery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  background: var(--nw-contacts-soft);
  border: 1px solid var(--nw-contacts-border);
  border-radius: 18px;
}

.notewall-contacts-page .nw-contacts-delivery h2 {
  margin-bottom: 8px;
}

.notewall-contacts-page .nw-contacts-delivery p:last-child {
  margin-bottom: 0;
  color: var(--nw-contacts-muted);
  font-size: 17px;
}

.notewall-contacts-page .nw-contacts-legal {
  padding: 28px;
}

.notewall-contacts-page .nw-contacts-legal__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.notewall-contacts-page .nw-contact-copy--wide {
  flex: 0 0 auto;
}

.notewall-contacts-page .nw-contacts-table {
  overflow: hidden;
  border: 1px solid var(--nw-contacts-border);
  border-radius: 14px;
}

.notewall-contacts-page .nw-contacts-table__row {
  display: grid;
  grid-template-columns: minmax(180px, 28%) minmax(0, 1fr);
}

.notewall-contacts-page .nw-contacts-table__row + .nw-contacts-table__row {
  border-top: 1px solid var(--nw-contacts-border);
}

.notewall-contacts-page .nw-contacts-table__label,
.notewall-contacts-page .nw-contacts-table__value {
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.45;
}

.notewall-contacts-page .nw-contacts-table__label {
  color: var(--nw-contacts-muted);
  background: #f8fbfd;
  font-weight: 750;
}

.notewall-contacts-page .nw-contacts-table__value {
  color: var(--nw-contacts-text);
  font-weight: 650;
  word-break: break-word;
}

.notewall-contacts-page .nw-contact-toast {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9999;
  min-width: 180px;
  padding: 13px 18px;
  color: #fff;
  background: #102033;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(16, 32, 51, .24);
  font-size: 15px;
  font-weight: 750;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.notewall-contacts-page .nw-contact-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .notewall-contacts-page {
    padding-inline: 18px;
  }

  .notewall-contacts-page .nw-contacts-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .notewall-contacts-page .nw-contacts-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notewall-contacts-page .nw-contacts-delivery {
    grid-template-columns: 1fr;
  }

  .notewall-contacts-page .nw-contacts-delivery .nw-contact-btn {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .notewall-contacts-page {
    padding: 18px 14px 52px;
  }

  .notewall-contacts-page .nw-contacts-lead {
    font-size: 16px;
  }

  .notewall-contacts-page .nw-contacts-actions,
  .notewall-contacts-page .nw-card-actions {
    flex-direction: column;
  }

  .notewall-contacts-page .nw-contact-btn,
  .notewall-contacts-page .nw-contact-copy {
    width: 100%;
  }

  .notewall-contacts-page .nw-contacts-quick-grid,
  .notewall-contacts-page .nw-contacts-city-grid {
    grid-template-columns: 1fr;
  }

  .notewall-contacts-page .nw-contacts-section__head {
    display: block;
  }

  .notewall-contacts-page h2 {
    font-size: 20px;
  }

  .notewall-contacts-page .nw-contacts-quick-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 18px;
  }

  .notewall-contacts-page .nw-contacts-quick-card .nw-contact-copy {
    grid-column: 1 / -1;
  }

  .notewall-contacts-page .nw-contacts-city-card,
  .notewall-contacts-page .nw-contacts-legal,
  .notewall-contacts-page .nw-contacts-delivery {
    padding: 20px;
  }

  .notewall-contacts-page .nw-contacts-city-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .notewall-contacts-page .nw-contacts-map {
    height: 220px;
  }

  .notewall-contacts-page .nw-contacts-legal__head {
    display: grid;
  }

  .notewall-contacts-page .nw-contacts-table {
    border-radius: 12px;
  }

  .notewall-contacts-page .nw-contacts-table__row {
    grid-template-columns: 1fr;
  }

  .notewall-contacts-page .nw-contacts-table__value {
    padding-top: 0;
  }

  .notewall-contacts-page .nw-contact-toast {
    right: 14px;
    left: 14px;
    bottom: 16px;
  }
}